コード例 #1
0
ファイル: Queue.cs プロジェクト: kappz/PracticeSets
 public Queue(T data)
 {
     count = 1;
     start = new QueueNode <T>(data);
     end   = start;
 }
コード例 #2
0
ファイル: Queue.cs プロジェクト: kappz/PracticeSets
 public QueueNode(T d)
 {
     data = d;
     next = null;
 }
コード例 #3
0
ファイル: Queue.cs プロジェクト: kappz/PracticeSets
 public Queue()
 {
     count = 0;
     start = null;
     end   = null;
 }
コード例 #4
0
ファイル: Queue.cs プロジェクト: kappz/PracticeSets
 public QueueNode()
 {
     next = null;
 }