洛谷【P1104】生日(插入排序版)

题目传送门:https://www.luogu.org/problemnew/show/P1104

题目很简单,我主要是来讲插入排序的。

所谓插入排序,就是从待排序数组不断将数据插入答案数组里。

假设前\(i\)位都排好了,我们要把第\(i+1\)个数字扔进答案数组里。我们先找到答案数组里第一个比这个数字大(或小)的数的位置,把从这个位置开始一直到最后的所有数往后移一位,把要排序的数字放在这个空出来的位置上。重复\(n\)遍就可以把无序的待排序数组排好成答案数组了。

时间复杂度:\(O(n^2)\)

空间复杂度:\(O(n)\)

代码如下:

#include 
#include 
using namespace std;

int n;

int read() {
    int x=0,f=1;char ch=getchar();
    for(;ch<'0'||ch>'9';ch=getchar())if(ch=='-')f=-1;
    for(;ch>='0'&&ch<='9';ch=getchar())x=x*10+ch-'0';
    return x*f;
}

struct OIer {
    char s[20];
    int year,month,day,id;

    bool operator<(const OIer &a)const {
        if(year==a.year&&month==a.month&&day==a.day)return id>a.id;
        if(year==a.year&&month==a.month)return daypos;j--)
            ans[j]=ans[j-1];//从pos到i-1的所有数据往后移一位
        ans[pos]=O[i];//把O[i]填进ans[pos]
    }
    for(int i=1;i<=n;i++)
        printf("%s\n",ans[i].s);
    return 0;
}

转载于:https://www.cnblogs.com/AKMer/p/9644744.html

你可能感兴趣的:(洛谷【P1104】生日(插入排序版))