摘要: 划分对于分治的算法设计很重要,下面就专门说一个划分的算法设计,然后再举例子说一些具体的应用。int Partition(int data[], int start, int end){ if(data == NULL) return -1; int index = RandomInRange... 阅读全文
posted @ 2015-08-05 13:57 stemon 阅读(297) 评论(0) 推荐(0)