1,lower_bound用法:
a[] 中查询k的位置
找的是大于等于他的第一个数,返回值为对应下标x=lower_bound(a+1,a+n+1,k)-a;
2,upper_bound用法:
找的是大于他的第一个数,返回值为对应下标x=upper_bound(a+1,a+n+1,k)-a;