您好,登錄后才能下訂單哦!
在Java中,有多種方法可以在集合中高效地查找元素。以下是一些建議:
contains()
方法即可。但是,HashSet不保證元素的順序。import java.util.HashSet;
public class Main {
public static void main(String[] args) {
HashSet<Integer> set = new HashSet<>();
set.add(1);
set.add(2);
set.add(3);
int target = 2;
if (set.contains(target)) {
System.out.println("Element found in HashSet");
} else {
System.out.println("Element not found in HashSet");
}
}
}
import java.util.HashMap;
public class Main {
public static void main(String[] args) {
HashMap<Integer, String> map = new HashMap<>();
map.put(1, "One");
map.put(2, "Two");
map.put(3, "Three");
int targetKey = 2;
if (map.containsKey(targetKey)) {
System.out.println("Element found in HashMap");
} else {
System.out.println("Element not found in HashMap");
}
}
}
import java.util.TreeMap;
public class Main {
public static void main(String[] args) {
TreeMap<Integer, String> map = new TreeMap<>();
map.put(1, "One");
map.put(2, "Two");
map.put(3, "Three");
int targetKey = 2;
if (map.containsKey(targetKey)) {
System.out.println("Element found in TreeMap");
} else {
System.out.println("Element not found in TreeMap");
}
}
}
根據你的需求和場景,可以選擇合適的集合類來實現高效的元素查找。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。