上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--publicstaticvoidQuickSort(int[]data,intlow,inthigh){inti=low;intj=high;inttmp=data[low];while(low<... 阅读全文
posted @ 2010-04-29 15:46 科睿思博 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--//简单选择publicstaticvoidSimpleSelectSort(int[]data){inttemp=0;intt=0;for(inti=0;i<data.Length-1;i++... 阅读全文
posted @ 2010-04-29 14:35 科睿思博 阅读(351) 评论(0) 推荐(1) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--usingSystem;usingSystem.Collections.Generic;publicclassMyClass{publicstaticvoidMain(){int[]data={1,2... 阅读全文
posted @ 2010-04-28 11:25 科睿思博 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--usingSystem;usingSystem.Collections.Generic;publicclassMyClass{publicstaticvoidMain(){int[]data={2,8... 阅读全文
posted @ 2010-04-28 10:36 科睿思博 阅读(654) 评论(0) 推荐(0) 编辑
摘要: 1 算一个数组的所有组合方式2直接插入算法 3冒泡算法 4简单选择 5快速排序 阅读全文
posted @ 2010-04-27 18:49 科睿思博 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 目的:给一个数字数组,算出这个数组的所有组合方式。 例子:比如给一个数组为{23,44,56}(这里为了能列举出所有的组合方式,所以选择一个长度较小的数组),那么我们所要得到的结果为6组数:{23,44,56},{23,56,44},{44,23,56},{44,56,23},{56,23,44},{56,44,23}。这三个数所能组成的数组方式不会再有第七种。 不考虑的问题:本文没有考虑类似... 阅读全文
posted @ 2010-04-27 18:47 科睿思博 阅读(766) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--usingSystem;usingSystem.Collections;usingSystem.Collections.Generic;publicclassDocument{publicstring... 阅读全文
posted @ 2010-04-27 11:45 科睿思博 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 2010-4-19对我来说是一次自我挑战的培训自己表达能力心里很清楚,的确很差劲,特别人多的时候,说话更是模糊这次,我大声的演讲,完全忘记自己是在培训别人,而只是想着如何把自己做的这个事情做好,在一直尽力作。结果,赢得了掌声!!很感谢自己!!相信自己,别人能做到的自己努力同样也可以做到,并且会做的很好!!----记录一次自己成功的经历 阅读全文
posted @ 2010-04-20 20:20 科睿思博 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--usingSystem;usingSystem.Collections;usingSystem.Collections.Generic;abstractclassAction{publicabstra... 阅读全文
posted @ 2010-04-15 14:27 科睿思博 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 面试题汇总12010-4-12 面试题1 22010-4-12 面试题2 阅读全文
posted @ 2010-04-12 20:07 科睿思博 阅读(180) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页