zoukankan      html  css  js  c++  java
  • 结构体数组排序

    using System;
    using System.Collections;
    using System.Collections.Generic;
    using System.Text;

    namespace 结构体冒泡排序
    {
        class Program
        {
            struct student
            {
                public string name;
                public int age;
            }
            static void Main(string[] args)
            {
                student[] a = new student[3];
                a[0].name = "约里克";
                a[0].age = 11;
                a[1].name = "掘墓者";
                a[1].age = 13;
                a[2].name = "德玛";
                a[2].age = 12;
                for (int i = 1; i <= a.Length; i++)
                {
                    for (int j = 1; j <= a.Length - i; j++)
                    {
                        if (a[j - 1].age < a[j].age)
                        {
                            student temp;
                            temp = a[j];
                            a[j] = a[j - 1];
                            a[j - 1] = temp;
                        }
                    }
                }
                Console.WriteLine("姓名为" + a[0].name + "年龄为" + a[0].age);
                Console.WriteLine("姓名为" + a[1].name + "年龄为" + a[1].age);
                Console.WriteLine("姓名为" + a[2].name + "年龄为" + a[2].age);
                Console.ReadLine();
            }
        }
    }

  • 相关阅读:
    银行业务调度系统
    Apache虚拟主机配置
    linux下 redis 启动
    linux下mysql 启动命令
    linux 查看磁盘空间大小
    基于微信地理位置的附近商家距离坐标数据查询方法
    mysql表无权限访问
    linux用户操作
    Java中Date各种相关用法
    spring 定时任务的 执行时间设置规则
  • 原文地址:https://www.cnblogs.com/lk-kk/p/4415464.html
Copyright © 2011-2022 走看看