摘要: 直接插入排序 希尔排序 选择排序 冒泡排序 阅读全文
posted @ 2010-11-30 11:57 别人叫我军师 阅读(187) 评论(0) 推荐(0) 编辑
  2011年9月14日
摘要: using System;using System.Collections.Generic;using System.Text;using System.Collections;/*** * * 冒泡排序 * * * * **/namespace TestConsole{ class Program { static void Main(string[] args) { int[] array = {32,24 ,21,20,18,3,8,57}; BubbleSort(array); ... 阅读全文
posted @ 2011-09-14 23:37 别人叫我军师 阅读(194) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Collections;namespace TestConsole{ class Program { static ... 阅读全文
posted @ 2011-09-14 22:55 别人叫我军师 阅读(192) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Collections;namespace TestConsole{ class Program { static void Main(string[] args) { Hashtable ht = new Hashtable(); ht.Add("first","One"); ht.Add("second", "Two"); ... 阅读全文
posted @ 2011-09-14 22:46 别人叫我军师 阅读(117) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Collections;namespace TestConsole{ class Program { static void Main(string[] args) { Queue q = new Queue(); Queue q2 = new Queue(); foreach (int i in new int[4] { 1, 2, 3... 阅读全文
posted @ 2011-09-14 22:28 别人叫我军师 阅读(177) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Collections;namespace TestConsole{ class Program { static void Main(string[] args) { Stack sk = new Stack(); Stack sk2 = new Stack(); foreach (int i in new int[4] { 1, 2,... 阅读全文
posted @ 2011-09-14 22:14 别人叫我军师 阅读(142) 评论(0) 推荐(0) 编辑
  2011年6月5日
摘要: 编辑器加载 导航 CSS入门 学前准备 入门提高 提高教材 布局教材 精彩片段 中... 阅读全文
posted @ 2011-06-05 15:09 别人叫我军师 阅读(146) 评论(0) 推荐(0) 编辑
  2010年12月15日
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> #include void main() { ... 阅读全文
posted @ 2010-12-15 16:31 别人叫我军师 阅读(1546) 评论(0) 推荐(0) 编辑
  2010年12月12日
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> #include void delchar( char ... 阅读全文
posted @ 2010-12-12 22:44 别人叫我军师 阅读(245) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> #include void fun(){ cha... 阅读全文
posted @ 2010-12-12 22:29 别人叫我军师 阅读(1591) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> void main(){ int a[ 5 ],i;... 阅读全文
posted @ 2010-12-12 15:52 别人叫我军师 阅读(1560) 评论(0) 推荐(0) 编辑