2013年10月30日

摘要: namespace ShopEx.CRS.Test{ /// ///将链表逆序 /// public class ReverseLinkList { //入口 public static void Do() { //创建单链表 int[] array = { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; Node head = new Node() { Num = array[0] }; Node tmp = head;... 阅读全文
posted @ 2013-10-30 15:57 豆沙包没有肉 阅读(296) 评论(0) 推荐(0) 编辑

导航