Best way to randomize an array with .NET

后端 未结 17 860
隐瞒了意图╮
隐瞒了意图╮ 2020-11-22 01:55

What is the best way to randomize an array of strings with .NET? My array contains about 500 strings and I\'d like to create a new Array with the same strings b

17条回答
  •  盖世英雄少女心
    2020-11-22 02:37

    Generate an array of random floats or ints of the same length. Sort that array, and do corresponding swaps on your target array.

    This yields a truly independent sort.

提交回复
热议问题