看板 C_and_CPP 關於我們 聯絡資訊
int a[10] = {0}; bool cmp(const int& i, const int& j) { cout << j << endl; return i < j; } int main() { int key = 99999; lower_bound(a, a+10, key, cmp); return 0; } 請問compare function裡面的第二個參數 是不是永遠都會是search key的值? -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 59.115.154.208
holymars:那要看lower_bound是怎麼implement的 04/21 14:28
DJWS:意思是說spec沒有規定囉? 04/21 15:08