Here we are gonna see how to remove all the elements of HashSet in one go. We can do so by calling clear() method of… [Read More]
How to copy one Set to another Set
In this article we are gonna see an example program to copy one Set to another Set. Example In this example we are copying one… [Read More]
How to Iterate over a Set/HashSet
There are following two ways to iterate through HashSet: 1) Using Iterator 2) Without using Iterator Example 1: Using Iterator import java.util.HashSet; import java.util.Iterator; class… [Read More]
Java – Get Set view of Keys from HashMap
Description Program to get the Set of keys from HashMap. Example import java.util.Iterator; import java.util.HashMap; import java.util.Set; class HashMapExample{ public static void main(String args[]) {… [Read More]
How to check if a HashMap is empty or not?
Description Program to check if a HashMap is empty or not. We are using isEmpty() method of HashMap class to perform this check. Program import… [Read More]
Clone a HashMap in Java
Description A program to clone a HashMap. We will be using following method of HashMap class to perform cloning. public Object clone(): Returns a shallow… [Read More]
Java – LinkedList peek(), peekFirst() and peekLast() methods
Description public E peek(): Retrieves, but does not remove, the head (first element) of this list. public E peekFirst(): Retrieves, but does not remove, the… [Read More]
Java – LinkedList poll(), pollFirst() and pollLast() methods
Description Example Programs for poll(), pollFirst() and pollLast() methods of LinkedList class. LinkedList.poll() Retrieves and removes the head (first element) of this list. import java.util.LinkedList;… [Read More]
LinkedList push() and pop() methods – Java
Description Programs to demonstrate push and pop operations on LinkedList. LinkedList.push(E e) public void push(E e): Inserts the element at the front of the list…. [Read More]
Adding element to front of LinkedList in Java
Description Program to add element to front(head) of LinkedList. Program import java.util.LinkedList; class LinkedListExample { public static void main(String[] args) { // create a LinkedList… [Read More]
- « Previous Page
- 1
- 2
- 3
- 4
- 5
- 6
- …
- 16
- Next Page »