- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Get lowest key stored in Java TreeMap
Use the firstKey() method to get the lowest key stored in TreeMap.
Let us first set the TreeMap and add some elements to it −
TreeMap<Integer,String> m = new TreeMap<Integer,String>(); m.put(1,"PHP"); m.put(2,"jQuery"); m.put(3,"JavaScript"); m.put(4,"Ruby"); m.put(5,"Java"); m.put(6,"AngularJS"); m.put(7,"ExpressJS");
Now get the lowest key −
m.firstKey()
The following is an example to get the lowest key in TreeMap −
Example
import java.util.*; public class Demo { public static void main(String args[]) { TreeMap<Integer,String> m = new TreeMap<Integer,String>(); m.put(1,"PHP"); m.put(2,"jQuery"); m.put(3,"JavaScript"); m.put(4,"Ruby"); m.put(5,"Java"); m.put(6,"AngularJS"); m.put(7,"ExpressJS"); System.out.println("TreeMap Elements...
"+m); System.out.println("Lowest key in TreeMap: " + m.firstKey()); } }
Output
TreeMap Elements... {1=PHP, 2=jQuery, 3=JavaScript, 4=Ruby, 5=Java, 6=AngularJS, 7=ExpressJS} Lowest key in TreeMap: 1
- Related Articles
- Java Program to get highest key stored in TreeMap
- Remove a key from TreeMap in Java
- Get Sub Map from TreeMap in Java
- Get Tail Map from TreeMap in Java
- Get Head Map from TreeMap in Java
- Create a TreeMap in Java and add key-value pairs
- Java Program to check if a particular key exists in TreeMap
- Java Program to get Tail Map from TreeMap
- Java Program to get Sub Map from TreeMap
- Get lower key from NavigableMap in Java
- Get floor key from NavigableMap in Java
- Get first key from NavigableMap in Java
- Get last key from NavigableMap in Java
- Get ceiling key from NavigableMap in Java
- Get higher key from NavigableMap in Java

Advertisements