Exemplo n.º 1
0
 private string AppendString(string str, LLNode node)
 {
     if (node.next == null)
     {
         return str + String.Format("-> {0}", node.data.ToString());
     }
     else
     {
         str += String.Format("-> {0}", node.data.ToString());
         return AppendString(str, node.next);
     }
 }
Exemplo n.º 2
0
 public LLNode(int data, LLNode next)
 {
     this.data = data;
     this.next = next;
 }
Exemplo n.º 3
0
        static void Main(string[] args)
        {
            LLNode node5 = new LLNode(6, null);
            LLNode node4 = new LLNode(5, node5);
            LLNode node3 = new LLNode(3, node4);
            LLNode node2 = new LLNode(2, node3);
            LLNode node1 = new LLNode(1, node2);

            node1.Insert(4, 0);
            node1.Delete(2);

            Console.WriteLine("LL: {0}", node1);

            LLNode revNode = Reverse(node1);

            Console.WriteLine("Reversed LL: {0}", revNode);

            Console.ReadLine();
        }
Exemplo n.º 4
0
        public static LLNode Reverse(LLNode node)
        {
            LLNode previous = null;
            LLNode next = node;

            while (next != null)
            {
                next = node.next;
                node.next = previous;

                previous = node;
                node = next;

            }

            return previous;
        }