文章
15
粉丝
68
获赞
0
访问
8.0k
#include <bits/stdc++.h>
using namespace std;
struct Node {
int Element; // 节点中的元素为整数类型
struct Node * Next; // 指向下一个节点
};
bool rule(Node a,Node b){
return a.Element<b.Element;
}
int main(){
vector<Node> sheet;
int n=5;
int x;
while(n--){
cin>>x;
sheet.push_back(Node{x,nullptr});
}
sort(sheet.begin(),sheet.end(),rule);
for(const auto& peer:sheet){
cout<<peer.Element<<" ";
}
cout<<endl;
return 0;
}
登录后发布评论
暂无评论,来抢沙发