Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

Java LinkedList

// Import the LinkedList class
import java.util.LinkedList;

public class Main {
  public static void main(String[] args) {
    LinkedList<String> cars = new LinkedList<String>();
    cars.add("Volvo");
    cars.add("BMW");
    cars.add("Ford");
    cars.add("Mazda");
    System.out.println(cars);
  }
}
Comment

LinkedList java

package org.o7planning.tutorial.javacollection.helloworld;

import java.util.LinkedList;

public class HelloLinkedList {

	public static void main(String[] args) {
		// Créer un objet LinkedList.
		LinkedList<String> list = new LinkedList<String>();

		// Ajouter quelques éléments à la liste
		list.add("F");
		list.add("B");
		list.add("D");
		list.add("E");
		list.add("C");

		// Ajouter l'élément à la fin de la liste
		list.addLast("Z");

		// Ajouter l'élément à la première position de la liste.
		list.addFirst("A");

		// Insérer l'élément spécifié en position avec l'index 1.
		list.add(1, "A2");

		// Écrire tous les éléments de la liste:
		System.out.println("Original contents of list: " + list);

		// Supprimer un élément de la liste
		list.remove("F");

		// Supprimer l'élément en position avec index 2
		list.remove(2);

		// Imprimer la liste après que vous avez supprimé 2 éléments.
		System.out.println("Contents of list after deletion: " + list);

		// Supprimer le premier  et le dernier élément  dans la liste.
		list.removeFirst();
		list.removeLast();

		// Imprimer la liste après qu'elle a été supprimée.
		System.out.println("List after deleting first and last: " + list);

		// Retirer l'élément à l'index 2.
		Object val = list.get(2);

		// Définir l'élément à l'index 2.
		list.set(2, (String) val + " Changed");
		System.out.println("List after change: " + list);
	}

}
Comment

linked list java

Method	              Description	
addFirst()	       Adds an item to the beginning of the list.	
addLast()	       Add an item to the end of the list	
removeFirst()	   Remove an item from the beginning of the list.	
removeLast()	   Remove an item from the end of the list	
getFirst()	       Get the item at the beginning of the list	
getLast()	       Get the item at the end of the list	
size()             Get the size of linked list
Comment

java LinkedList

public class Node{
Node next;
int data;
public Node(int data){
  this.data = data;
 }
}
Comment

PREVIOUS NEXT
Code Example
Java :: java sort a map by keys 
Java :: set matrix zeros 
Java :: window in java swing 
Java :: latest android version 
Java :: type of exception in java 
Java :: android search in webview 
Java :: list of arrays java 
Java :: java stringbuilder set value 
Java :: java lambda expressions 
Java :: java string join 
Java :: java polymorphism 
Java :: launch java batch 
Java :: Float to bytes java 
Java :: java remove item from list 
Java :: java equal string 
Java :: java asynchronous programming example 
Java :: select list of values from db java 
Java :: Error:java: error reading C:UsersMeriem.m2 epositoryorgapachecommonscommons-lang33.12.0commons-lang3-3.12.0.jar; error in opening zip file 
Java :: how to get orientation lock to portrait android stackoverflow 
Java :: java add a list to a list 
Java :: ArrayList of prime numbers 
Java :: export java command in linux 
Java :: android studio Toast usage 
Java :: does not have a NavController set on 2131231008 
Java :: add close button on right top corner of alert dialog box for android 
Java :: how to merge two arrays in java 
Java :: exception handling in java 
Java :: date java use fix timezone 
Java :: java stack verification failed 
Java :: jframe calculator 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =