温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

委托二--------使用委托实现冒泡排序

发布时间:2020-06-22 05:51:29 来源:网络 阅读:662 作者:1473348968 栏目:编程语言

-------------------------------------------------------------Proson.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
    public class Proson
    {
        public string Name { get; private set; }
        public decimal Money { get; private set; }
        public Proson(string name, decimal money)
        {
            this.Name = name;
            this.Money = money;
        }
        public override string ToString()
        {
            return string.Format("姓名:{0};月薪:{1}", Name, Money);
        }
        //此方法用于传为委托
        public static bool IsMax(Proson p1, Proson p2)
        {
            return p1.Money < p2.Money;
        }
    }
}

-------------------------------------------------------------MySort.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
    public class MySort
    {
        //IList<T> array  :用于接收任何数组,集合
        //Func<T, T, bool> func :委托 ,传递两个参数,一个bool返回值
        public static void Sort<T>(IList<T> array, Func<T, T, bool> func)
        {
            bool yesno = true;
            do {
                yesno = false;
                for (int i = 0; i < array.Count - 1; i++)
                {
                    if (func(array[i], array[i + 1]))//用到了委托【bool IsMax(Proson p1, Proson p2)】
                    {
                        T temp = array[i];
                        array[i] = array[i + 1];
                        array[i + 1] = temp;
                        yesno = true;
                    }
                }
            } while (yesno);
        }
    }
}

-------------------------------------------------------------主程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            Proson[] p = { new Proson("张翼德", 100000m), 
                             new Proson("赵子龙", 50000m),
                             new Proson("关云长", 150000m), 
                             new Proson("诸葛亮", 200000m) };
            //传递一个数组,和一个方法
            MySort.Sort(p, Proson.IsMax);
            foreach (var item in p)
            {
                Console.WriteLine(item.ToString());
                Console.ReadLine();
            }
 
        }
    }
}

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI