コード例 #1
0
 public LLNode(int d)
 {
     data = d;
     next = null;
 }
コード例 #2
0
 public LLNode getLastNode(LLNode head)
 {
     return(last);
 }