PAT1028 List Sorting

本文详细探讨了排序算法的应用场景及优化策略,包括快速排序、名称排序和成绩排序的实现方式,通过实例展示了如何根据需求选择合适的排序算法,并对算法进行优化以提高效率。

用vector最后一个用例超时了。。。

 

Sample Input 1

3 1
000007 James 85
000010 Amy 90
000001 Zoe 60

Sample Output 1

000001 Zoe 60
000007 James 85
000010 Amy 90

Sample Input 2

4 2
000007 James 85
000010 Amy 90
000001 Zoe 60
000002 James 98

Sample Output 2

000010 Amy 90
000002 James 98
000007 James 85
000001 Zoe 60

Sample Input 3

4 3
000007 James 85
000010 Amy 90
000001 Zoe 60
000002 James 90

Sample Output 3

000001 Zoe 60
000007 James 85
000002 James 90
000010 Amy 90

 

版本一:

 

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

struct student
{
	char number[7];
	char name[9];
	short grade; 
};

int cmp_number(const void *p, const void *q)
{
	const struct student *p1 = (student*)p;
	const struct student *p2 = (student*)q;

	return strcmp(p1->number, p2->number);
}
int cmp_name(const void *p, const void *q)
{
	const struct student *p1 = (student*)p;
	const struct student *p2 = (student*)q;

	if(strcmp(p1->name, p2->name) > 0)
	{
		return 1;
	}else if(strcmp(p1->name, p2->name) == 0 && strcmp(p1->number,p2->number) > 0)
	{
		return 1;
	}else
	{
		return -1;
	}
}
int cmp_grade(const void *p, const void *q)
{
	const struct student *p1 = (student*)p;
	const struct student *p2 = (student*)q;

	if(p1->grade > p2->grade)
	{
		return 1;
	}else if(p1->grade == p2->grade && strcmp(p1->number,p2->number) > 0)
	{
		return 1;
	}else
	{
		return -1;
	}
}

student stus[100002];

int main()
{
	int n, i, type;

	int count = 1;

	while(scanf("%d %d", &n, &type) != EOF)
	{
		if(n == 0)
		{
			break;
		}

		for(i = 0; i < n; i ++)
		{
			scanf("%s %s %hd",stus[i].number, stus[i].name, &stus[i].grade);
		}
		//快速排序
		switch(type)
		{
		case 1:
			qsort(stus, n, sizeof(struct student), cmp_number);
			break;
		case 2:
			qsort(stus, n, sizeof(struct student), cmp_name); 
			break;
		case 3:
			qsort(stus, n, sizeof(struct student), cmp_grade);
			break;
		}        
		for(i = 0; i < n; i ++)
		{
			printf("%s %s %hd\n",stus[i].number, stus[i].name, stus[i].grade);
		}
	}

	return 0;
}
 

版本二:

 

#include <iostream>
#include <iomanip>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;

struct STUDENT
{
    string ID;
    string Name;
    int score;
};

bool greaterID(const STUDENT& s1,const STUDENT& s2)     
{     
    return (s1.ID.compare(s2.ID) > 0)?false:true;
}

bool greaterName(const STUDENT& s1,const STUDENT& s2)     
{     
    int result = s1.Name.compare(s2.Name);
    if (result == 0)
    {
        return (s1.ID.compare(s2.ID) > 0)?false:true;
    }
    return (result > 0)?false:true;
}

bool greaterScore(const STUDENT& s1,const STUDENT& s2)     
{     
    if (s1.score == s2.score)
    {
        return (s1.ID.compare(s2.ID) > 0)?false:true;
    }
    else
    {
        return (s1.score > s2.score)?false:true;
    }
}

int main()
{
    int N,type;
    cin>>N>>type;
    vector<STUDENT> V;
    for (int i = 0; i < N; i++)
    {
        STUDENT stu;
        cin>>stu.ID>>stu.Name>>stu.score;
        V.push_back(stu);
    }

    switch(type)
    {
    case 1:
        sort(V.begin(),V.end(),greaterID);
        break;
    case 2:
        sort(V.begin(),V.end(),greaterName);
        break;
    case 3:
        sort(V.begin(),V.end(),greaterScore);
        break;
    default:
        break;
    }

    for (int i = 0; i < N; i++)
    {
        cout<<V[i].ID<<" "<<V[i].Name<<" "<<V[i].score<<endl;
    }
}
【事件触发一致性】研究多智能体网络如何通过分布式事件驱动控制实现有限时间内的共识(Matlab代码实现)内容概要:本文围绕多智能体网络中的事件触发一致性问题,研究如何通过分布式事件驱动控制实现有限时间内的共识,并提供了相应的Matlab代码实现方案。文中探讨了事件触发机制在降低通信负担、提升系统效率方面的优势,重点分析了多智能体系统在有限时间收敛的一致性控制策略,涉及系统模型构建、触发条件设计、稳定性与收敛性分析等核心技术环节。此外,文档还展示了该技术在航空航天、电力系统、机器人协同、无人机编队等多个前沿领域的潜在应用,体现了其跨学科的研究价值和工程实用性。; 适合人群:具备一定控制理论基础和Matlab编程能力的研究生、科研人员及从事自动化、智能系统、多智能体协同控制等相关领域的工程技术人员。; 使用场景及目标:①用于理解和实现多智能体系统在有限时间内达成一致的分布式控制方法;②为事件触发控制、分布式优化、协同控制等课题提供算法设计与仿真验证的技术参考;③支撑科研项目开发、学术论文复现及工程原型系统搭建; 阅读建议:建议结合文中提供的Matlab代码进行实践操作,重点关注事件触发条件的设计逻辑与系统收敛性证明之间的关系,同时可延伸至其他应用场景进行二次开发与性能优化。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值