1 //uppper_bound上确界找出首个大于某值的元素 2 #include3 #include 4 5 using namespace std; 6 7 int main() 8 { 9 int a[] = { 23, 9, 7, 2, 3, 4};10 int len = sizeof(a)/int (a);11 int *x = upper_bound(a, a+len, 7);12 13 cout<<"不小于7的上确界元素为"<<*x<
本文共 342 字,大约阅读时间需要 1 分钟。
1 //uppper_bound上确界找出首个大于某值的元素 2 #include3 #include 4 5 using namespace std; 6 7 int main() 8 { 9 int a[] = { 23, 9, 7, 2, 3, 4};10 int len = sizeof(a)/int (a);11 int *x = upper_bound(a, a+len, 7);12 13 cout<<"不小于7的上确界元素为"<<*x<
转载于:https://www.cnblogs.com/ruruozhenhao/p/8321091.html