欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

冒泡获取整型列表中最大的数

程序员文章站 2022-05-12 10:34:14
...
using UnityEngine;
using System.Collections;
using System.Collections.Generic;

public class tt : MonoBehaviour {
    public List<string> haitao = new List<string>();

    void Start () {
        haitao.Add(9981+"");
        haitao.Add(9983 + "");
        haitao.Add(9988 + "");
        haitao.Add(9984 + "");
        print(getMax());
    }

    public int getMax()  //从整型列表中获取最大的一个
    {
        int cache;
        if (haitao.Count == 0)
        {
            cache = int.Parse(haitao[0]);
        }
        else
        {
            for (int i = 0; i < haitao.Count; i++)
            {
                for (int j = i + 1; j < haitao.Count; j++)
                {
                    if (int.Parse(haitao[i]) > int.Parse(haitao[j]))
                    {
                        cache = int.Parse(haitao[i]);
                        haitao[i] = haitao[j];
                        haitao[j] = cache + "";
                    }
                }
            }
            cache = int.Parse(haitao[haitao.Count - 1]);
        }
        return cache;
    }


}


打印结果:9988



FR:海涛高软(Hunk Xu)