摘要: #include <iostream> using namespace std; template <typename T> int binary_search(T* a,T b,int left,int right) { int mid = (left + right) / 2; if (b > 阅读全文
posted @ 2021-02-20 20:19 zhaohhhh 阅读(98) 评论(0) 推荐(0)