• C# 打乱list数组的顺序


    /// <summary>
            /// 随机排列数组元素
            /// </summary>
            /// <param name="myList"></param>
            /// <returns></returns>
            private List<int> ListRandom(List<int> myList)
            {
    
                Random ran = new Random();
                List newList = new List();
                int index = 0;
                int temp = 0;
                for (int i = 0; i < myList.Count; i++)
                {
    
                    index = ran.Next(0, myList.Count-1);
                    if (index != i)
                    {
                        temp = myList[i];
                        myList[i] = myList[index];
                        myList[index] = temp;
                    }
                }
                return myList;
            }
  • 相关阅读:
    20210420
    20210419
    2021041601
    20210416
    20210415
    20210414
    20210413
    20210412
    20210409
    20210405
  • 原文地址:https://www.cnblogs.com/infly123/p/3098332.html
Copyright © 2020-2023  润新知