摘要:
1 算一个数组的所有组合方式2直接插入算法 3冒泡算法 4简单选择 5快速排序 阅读全文
摘要:
目的:给一个数字数组,算出这个数组的所有组合方式。 例子:比如给一个数组为{23,44,56}(这里为了能列举出所有的组合方式,所以选择一个长度较小的数组),那么我们所要得到的结果为6组数:{23,44,56},{23,56,44},{44,23,56},{44,56,23},{56,23,44},{56,44,23}。这三个数所能组成的数组方式不会再有第七种。 不考虑的问题:本文没有考虑类似... 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--usingSystem;usingSystem.Collections;usingSystem.Collections.Generic;publicclassDocument{publicstring... 阅读全文