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 default constructor 
Java :: recursion java 
Java :: Rotate Vector by an angle 
Java :: java binary search tree 
Java :: java package 
Java :: can you override static methods in java 
Java :: what are abstract classes in java 
Java :: is java pass by value or pass by reference 
Java :: java use of super keyword 
Java :: arraylist contains doc 
Java :: Can a method be abstract and final in abstract class 
Java :: Get the number of weeks between two dates 
Java :: java @override 
Java :: java remove double spaces 
Java :: Exception in Application start method java.lang.reflect.InvocationTargetException 
Java :: remove java ubuntu 20.04 
Java :: java icon to image 
Java :: Java Scanner nextDouble() 
Java :: partioning operation Java 
Sql :: safe mode off mysql 
Sql :: oracle nls_date_format 
Sql :: mysql add user with all privileges 
Sql :: how to get non integer value in sql 
Sql :: SELECT list is not in GROUP BY clause 
Sql :: too many connections mysql 
Sql :: sqlite alter table add column 
Sql :: how to install psql in ubuntu 
Sql :: how to stop all connections to a psql 12 database? 
Sql :: rename table sql 
Sql :: sql error 1175 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =