嘗試下一個:
(詳細內容請閱讀評論,並測試其如何工作的)
#include <stdio.h>
#include <assert.h>
/*
Return index an integer number begin from start an array,
otherwise return -1.
*/
int indexOf(int *array, int array_size, int number) {
for (int i = 0; i < array_size; ++i) {
if (array[i] == number) {
return i;
}
}
return -1;
}
// Tests for indexOf()
void test_indexOf() {
int array[10] = {12, 78, -43, 0, 21, 12, 20, -9, 1, -1};
assert(indexOf(array, 10, 12) == 0);
assert(indexOf(array, 10, 0) == 3);
assert(indexOf(array, 10, 2) == -1);
assert(indexOf(array, 10, 43) == -1);
assert(indexOf(array, 10, 11) == -1);
assert(indexOf(array, 10, -1) == 9);
assert(indexOf(array, 10, 1) == 8);
assert(indexOf(array, 10, -2) == -1);
assert(indexOf(array, 10, 3) == -1);
}
int main() {
test_indexOf();
return 0;
}
注:
由於C還沒有支持重載函數,indexOf()只能和inte數組類型一起工作蒙古包。
的C已不適合的陣列的指針的定長支持。所以,你需要手動傳遞數組的大小。
測試環境:
-
$ uname -a
Linux wlysenko-Aspire 3.13.0-37-generiC#64-Ubuntu SMP Mon Sep 22 21:28:38 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
$ gcc --version
gcc (Ubuntu 4.8.5-2ubuntu1~14.04.1) 4.8.5
謝謝你,在我的情況,我認爲是最好的解決辦法。我的陣列很短,我必須在很多時間搜索它。每次分類和搜索都不會大大改善時間。非常感謝。 – 2013-02-27 10:52:45