예제 #1
0
        //打印链表
        public string PRINT()
        {
            string s = "";

            for (Node temp = head; temp != null; temp = temp.next)
            {
                s += temp.PRINT() + " ";
            }
            return(s);
        }