假設我有一個數組如何在不使用計數器的情況下檢查數組的所有元素是否都相同?
bool string[N]={false};
做一些操作字符串數組成爲真正的所有元素之後。 我想在檢查這個條件if語句,像這樣: -
僞代碼 -
if(all the elements of string are same or equal)
then do this
如何做到這一點,我不應該使用計數器像
for(int i=0;i<N;i++) //or something else like this
指針還行嗎? –
@JoachimPileborg是的,他們是。 – chanzerre
'for(bool * p = string;(p-string)