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();
            }
        }
    }

  • 相关阅读:
    DMZ区
    集群(cluster)和高可用性(HA)的概念
    JS禁用右键,禁用打印,防止另存为,IE浏览器识别(转载)
    window.open实现模式窗口(只弹出一个window.open)
    Textarea自适应高度 JS实现,兼容IE67891011
    JQ基础语法
    SQL 小笔记
    CSS样式笔记
    IE8下 Select文字垂直居中的办法
    汉字转全拼音函数优化方案(SQLServer),值得你看看
  • 原文地址:https://www.cnblogs.com/lk-kk/p/4415464.html
Copyright © 2011-2022 走看看