
基础算法------排 序
不想悲伤到天明
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
我的两群吃粽小伙子
3270: 我的两群吃粽小伙伴Time Limit: 1 Sec Memory Limit: 128 MBSubmit: 683 Solved: 26[Submit][Status][Web Board]Description这时有两群小伙伴中的每个人都拎着刚买的热乎乎的粽子在食堂碰面了,他们打算把每个人手中所有的粽子摆在桌子上,可以看清楚大家都买了多少不同口味的粽子。强迫症患者看着乱糟糟的一...原创 2018-06-10 11:54:59 · 321 阅读 · 0 评论 -
多关键字排序(高考分数录取)
#include <stdio.h>#include <stdlib.h>#include <string.h>#define MAX 100#define Path "D:\\dos\\studata.txt"typedef struct Student{ char Num[MAX] ; // 序号 int Sumofscore ; // 成绩总...原创 2018-06-25 20:16:19 · 1650 阅读 · 0 评论 -
常见的排序
#include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#define Swap(a,b) a ^= b ^= a ^= b ;using namespace std ;void select_...原创 2018-10-08 20:56:56 · 138 阅读 · 0 评论 -
Codeforces Round #350 (Div. 2) Cinema (排序+离散化)
Moscow is hosting a major international conference, which is attended by n scientists from different countries. Each of the scientists knows exactly one language. For convenience, we enumerate all lan...原创 2019-02-21 21:48:53 · 274 阅读 · 0 评论