数据结构与算法题目集7-40——奥运排行榜

我的数据结构与算法题目集代码仓:https://github.com/617076674/Data-structure-and-algorithm-topic-set

原题链接:https://pintia.cn/problem-sets/15/problems/867

题目描述:

数据结构与算法题目集7-40——奥运排行榜_第1张图片

知识点:排序

思路:分别按4个规则排序4次

注意排名相同的情况,即如果某两个国家的金牌数都是10,那么其金牌排名应当相同

时间复杂度是O(N*M)。空间复杂度是是O(N)。

C++代码:

#include
#include
#include

using namespace std;

struct country {
	int numb

你可能感兴趣的:(数据结构与算法题目集,数据结构与算法题目集,排序,奥运排行榜)