随机播放列表

发布于 2024-08-22 05:43:58 字数 270 浏览 5 评论 0原文

可能的重复:
随机化列表在 C# 中

我有一个列表,其中包含数千个指向音频文件位置的 FilePath,并且想知道哪种方法是“随机播放”列表的最有效方法?

非常感谢任何帮助:)

谢谢

Possible Duplicate:
Randomize a List<T> in C#

I have a list which contains many thousands of FilePath's to locations of audio files, and was wondering which would be the most efficient way to "shuffle" a List?

Any help is greatly appreciated :)

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

夜夜流光相皎洁 2024-08-29 05:43:58

Fisher-Yates Shuffle 或也称为 Knuth shuffle。

Fisher-Yates Shuffle or as it is also known as, Knuth shuffle.

栀梦 2024-08-29 05:43:58

下面是 Fischer-Yates/Knuth shuffle 的一个简单(但有效)的实现:

Random rnd = new Random();
for (int i = files.Length; i > 1; i--) {
  int pos = rnd.Next(i);
  var x = files[i - 1];
  files[i - 1] = files[pos];
  files[pos] = x;
}

或者稍有变化:

Random rnd = new Random();
for (int i = 1; i < files.Length; i++) {
  int pos = rnd.Next(i + 1);
  var x = files[i];
  files[i] = files[pos];
  files[pos] = x;
}

由于这是一个 O(n) 操作,因此它是对列表进行洗牌的最有效方法。由于列表中的所有项目都必须有机会被移动,因此不可能比 O(n) 更有效地对列表进行洗牌。

我使用此方法和当前接受的答案 (LINQ OrderBy) 对 100 万个项目进行了 1000 次洗牌,进行了一个小型性能测试,这大约快了 15 倍 (!)。

Here is a simple (yet effective) implementation of the Fischer-Yates/Knuth shuffle:

Random rnd = new Random();
for (int i = files.Length; i > 1; i--) {
  int pos = rnd.Next(i);
  var x = files[i - 1];
  files[i - 1] = files[pos];
  files[pos] = x;
}

Or a slight variation:

Random rnd = new Random();
for (int i = 1; i < files.Length; i++) {
  int pos = rnd.Next(i + 1);
  var x = files[i];
  files[i] = files[pos];
  files[pos] = x;
}

As this is an O(n) operation, it's the most efficient way of shuffling a list. As all items in the list has to have chance to be moved, it's not possible to shuffle a list more efficiently than O(n).

I made a small performance test by shuffling a million items a thousand times each using this method and the currently accepted answer (LINQ OrderBy), and this is about 15 times (!) faster.

筑梦 2024-08-29 05:43:58

myList.OrderBy(Guid.NewGuid())

myList.OrderBy(Guid.NewGuid())

依 靠 2024-08-29 05:43:58

我从 这个问题添加了 Jon Skeet 的解决方案到我的扩展库。我实现的方法既采用外部随机数生成器,又使用默认实现(随机)创建一个随机数生成器。

I added Jon Skeet's solution from this question to my Extensions library. I implemented methods that both take an external random number generator and create one using a default implementation (Random).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文