Check if a particular value exists in Java TreeSet example : TreeSet « Collections Data Structure « Java
- Java
- Collections Data Structure
- TreeSet
Check if a particular value exists in Java TreeSet example
import java.util.TreeSet;
public class Main {
public static void main(String[] args) {
TreeSet<String> tSet = new TreeSet<String>();
tSet.add("1");
tSet.add("2");
tSet.add("3");
tSet.add("4");
tSet.add("5");
boolean blnExists = tSet.contains("3");
System.out.println("3 exists in TreeSet ? : " + blnExists);
}
}
Related examples in the same category