예제 #1
0
파일: Program.cs 프로젝트: o-buly/ruppin-CS
 public void deleteList()
 {
     head = null;
 }
예제 #2
0
파일: Program.cs 프로젝트: o-buly/ruppin-CS
 public linkedList(int value)
 {
     head = new node(value);
 }
예제 #3
0
 public node(int d)
 {
     data = d;
     next = null;
 }