
排序
文章平均质量分 72
yuniZZ
这个作者很懒,什么都没留下…
展开
-
运用C++的一些排序
#include #include using namespace std; int main() { int a[10] = {5, 1, 4, 2, 3, 10, 6, 9, 7, 8}; //max_element()找数组中的最大数,返回指针类型 printf("the max_element is :%d\n", *max_element(a, a + 10));原创 2014-04-28 14:11:59 · 333 阅读 · 0 评论 -
HDOJ1157 Who's in the Middle(排序)
Who's in the Middle原创 2014-07-24 15:10:07 · 555 阅读 · 0 评论