從Java 中的HashSet 或LinkedHashSet 中選取隨機元素
使用集合時,特別是HashSet 或LinkedHashSet,需要選擇可能會出現隨機元素。以下是如何在Java 中實現這一目標的詳細說明:
提供的解決方案包括計算HashSet 的大小,產生該範圍內的隨機數,然後迭代元素以隨機傳回該值選定的索引。下面的程式碼片段示範了這個過程:
<code class="java">int size = myHashSet.size(); int item = new Random().nextInt(size); // In real life, the Random object should be rather more shared than this int i = 0; for (Object obj : myHashSet) { if (i == item) { return obj; } i++; }</code>
透過實作這種方法,您可以有效率地從 HashSet 或 LinkedHashSet 中選擇隨機元素,為您的程式需求提供便捷的解決方案。
以上是如何在 Java 中從 HashSet 或 LinkedHashSet 中選取隨機元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!