链表的建立

Results

Initialize Linked List from end...
1 -> 2 -> 3 -> 4 -> 5 -> NULL
Initialize Linked List from head...
5 -> 4 -> 3 -> 2 -> 1 -> NULL

原文地址:https://www.cnblogs.com/lilideng/p/11279553.html