Click here to watch in Youtube : https://www.youtube.com/watch?v=UDK8HkBD1BI
LinkedListPushExample.java
Output
LinkedListPushExample.java
import java.util.LinkedList; /* * Example of push() method */ public class LinkedListPushExample { public static void main( String[] args ) { LinkedList<Integer> linkedList = new LinkedList<Integer>(); linkedList.add(200); linkedList.add(300); linkedList.add(10000); linkedList.add(5000); System.out.println("linkedList : " + linkedList + "\n"); /* * Pushes an element onto the stack represented by this list. In other * words, inserts the element at the front of this list. */ linkedList.push(100); System.out.println("linkedList : " + linkedList + "\n"); } }
linkedList : [200, 300, 10000, 5000] linkedList : [100, 200, 300, 10000, 5000]
To Download LinkedListDemoPush Project Click the below link
https://sites.google.com/site/javaee4321/java-collections/LinkedListDemoPush.zip?attredirects=0&d=1
See also:
No comments:
Post a Comment