摘要: 今天看了C的数据结构,无聊写了一些C#的数据结构算法. class Program { static void Main(string[] args) { int[] list = new int[]{10,9,8,7,6,5,4,3,2,1}; bubbleSort(list); } //冒... 阅读全文
posted @ 2008-04-05 17:39 啊文 阅读(168) 评论(0) 推荐(0) 编辑