摘要:
折半查找:class Solution {public: int searchInsert(int A[], int n, int target) { // Start typing your C/C++ solution below // DO NOT write int main() function if( n <= 0 ) { return 0; } int low = 0; int high = n-1; while( low <... 阅读全文
posted @ 2013-06-20 10:05
NinaGood
阅读(144)
评论(0)
推荐(0)

浙公网安备 33010602011771号