摘要: 直接贴代码:#include<iostream>using namespace std;int minInorder(int numbers[],int index1,int index2);int min(int numbers[],int length){ if(length<=0) throw new std::exception("Invalid Input"); int index1=0; int index2=length-1; int mid=index1; while(numbers[index1]>=numbers[index2]) 阅读全文
posted @ 2013-01-03 18:58 代码改变未来 阅读(236) 评论(0) 推荐(0) 编辑