linux面試

筆者作爲一枚小小的程序員在面試中經常會考一些算法的實現,做個總結 二分法 [html]  view plain  copy int binSearch(int x, int a[], int n)     {        int low, high, mid;        low = 0;        high = n-1;        //注意,這裏必須用<=, 用<不對,一直返回-1 
相關文章
相關標籤/搜索