摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsolePractice 8 { 9 class CArray 10 { 11 private int[] arr; 12 //数组大小 13 private int upper; 14 //下标 15 ... 阅读全文
posted @ 2013-12-04 01:10 漂移青春 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsolePractice 8 { 9 public class Node 10 { 11 public int data; 12 public Node(int key) 13 { 14 data = k... 阅读全文
posted @ 2013-12-04 00:09 漂移青春 阅读(263) 评论(0) 推荐(0) 编辑