摘要: 1.作用对象:数组 a[n] 头文件:#include<algorithm> 内容:sort(a,a+n) 功能:进行升序排序 内容:lower_bound(a,a+n,x) 功能:找到大于等于x的位置 int pos=lower_bound(a,a+n,x)-a; 可以判断x是否存在于该数组 如果 阅读全文
posted @ 2019-01-18 21:54 saaas 阅读(99) 评论(0) 推荐(0) 编辑