forked from super30admin/PreCourse-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkedList.java
More file actions
67 lines (58 loc) · 2.03 KB
/
LinkedList.java
File metadata and controls
67 lines (58 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Time Complexity : O(1)
// Space Complexity : O(N)
// Did this code successfully run on Leetcode :
// Any problem you faced while coding this : N/A
import java.io.*;
// Java program to implement
// a Singly Linked List
public class LinkedList {
Node head; // head of list
// Linked list Node.
// This inner class is made static
// so that main() can access it
static class Node {
int data;
Node next;
// Constructor
Node(int d)
{
//Write your code here
this.data = d;
this.next = null;
}
}
// Method to insert a new node
public static LinkedList insert(LinkedList list, int data)
{
// Create a new node with given data
Node node = new Node(data);
Node headNode = list.head; // creating reference node so that we can return list.head at last
// If the Linked List is empty,
// then make the new node as head
if(list.head == null){
list.head = node; // if current head is null then assign input data in list.head
}else{
// Else traverse till the last node
// and insert the new_node there
while(headNode.next != null){
headNode = headNode.next; //traverse to the last node
}
headNode.next = node; // Insert the new_node at last node
}
return list;
// Return the list by head
}
// Method to print the LinkedList.
public static void printList(LinkedList list)
{
// Traverse through the LinkedList
Node traversingNode = list.head;
System.out.println("Excercise 3: Linked List: ");
while(traversingNode.next != null){ //traverse the nodes
System.out.println(traversingNode.data);
traversingNode = traversingNode.next;
}
// Print the data at current node
// Go to next node
}
}