• 类里二级排序函数使用


    // 好几天请教的别人,当时是为了写算法作业,然后写完了就存优盘了,今天看见从新学习一下,好像还有一种方法就是运算符重载,不过没有试出来,等看了书再加上吧。

    // 之前不知道为什么写的折叠的代码打不开,又从新写了一遍

    #include<stdio.h> #include<string.h> #include<iostream> #include<algorithm> #define N 1010 using namespace std; class kuls { public: struct node { int x,y,z; }eage[N]; /* 按权值从小到大排序 */ static bool cmp(const node &a,const node &b) { return a.z < b.z; } int n; void get() { int i; while(cin>>n) { for(i = 0; i < n; i++) { cin>>eage[i].x>>eage[i].y>>eage[i].z; } sort(eage,eage + n,cmp); for(i = 0; i < n; i++) cout<<eage[i].x<<" "<<eage[i].y<<" "<<eage[i].z<<endl; } } }; int main() { kuls f; //freopen("data.txt","r",stdin); f.get(); return 0; }

      

  • 相关阅读:
    使用GitLab搭建Git仓库
    SpringBoot web开发
    springboot配置
    springboot自动配置原理
    springboot修改端口号
    springboot创建方式
    junit运行多个测试的方法
    junit常用注解
    junit断言
    sublime将.m文件关联MATLAB类型高亮
  • 原文地址:https://www.cnblogs.com/fxh19911107/p/2495511.html
Copyright © 2020-2023  润新知