我想用數組中的鍵創建表。有沒有一種簡單的方法來做到這一點。使用特定值計算函數調用的次數
int array1[] = {1,5,3,8,9,11};
// table[1]
// table[5]
// table[3]
int count(int a)
{
//a is one of the values in array. array1[] = {1,5,3,8,9,11};
// for ex 3.
// I have to figure out how many times this function was called with what values 1/5/3/8/9/11
table[3]++;
}
創建一個全局數組(即在你的函數count()之外),將它設置爲零(int)。如果遇到array1中的值,則增加indice值。 – aghoribaba 2014-10-16 18:35:06