w3resource

Java: Search a key in a Tree Map

Java Collection, TreeMap Exercises: Exercise-3 with Solution

Write a Java program to search for a key in a Tree Map.

Sample Solution:-

Java Code:

import java.util.*;  
public class Example3 {  
   public static void main(String args[]){  
  
  // Create a tree map
   TreeMap<String,String> tree_map1=new TreeMap<String,String>();      
  
  // Put elements to the map 
  tree_map1.put("C1", "Red");
  tree_map1.put("C2", "Green");
  tree_map1.put("C3", "Black");
  tree_map1.put("C4", "White"); 
    
  System.out.println(tree_map1);
        if(tree_map1.containsKey("C1")){
            System.out.println("The Tree Map contains key C1");
        } else {
            System.out.println("The Tree Map does not contain key C1");
        }
        if(tree_map1.containsKey("C5")){
            System.out.println("The Tree Map contains key C5");
        } else {
            System.out.println("The TreeMap does not contain key C5");
        }
    }
}

Sample Output:

{C1=Red, C2=Green, C3=Black, C4=White}                                 
The Tree Map contains key C1                                           
The TreeMap does not contain key C5

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Copy a Tree Map content to another Tree Map content.
Next: Search a value in a Tree Map.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/collection/java-collection-tree-map-exercise-3.php