-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkedList.java
More file actions
77 lines (70 loc) · 2.04 KB
/
LinkedList.java
File metadata and controls
77 lines (70 loc) · 2.04 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
68
69
70
71
72
73
74
75
76
77
//kelly briceno
//class that contains methods
public class LinkedList {
private Node first; //ref to first link on linkedlist
private Node last; //red to last link on linkedlist
//constructor
public LinkedList() {
first = null;
}
//insert new node of doubly linked list
public void insertFirst(String data) {
Node newNode = new Node(data); //creating new node
if(first == null)
last = newNode;
else
first.previous = newNode;
newNode.next = first;
first = newNode;
}
//deletes a node from the list
public Node deleteFirst() {
if(first == null){
throw new LinkedListEmptyException("Linked list doesnt contain any nodes");
}
Node tempNode = first;
if(first.next == null)
last = null;
else
first.next.previous = null;
first = first.next;
return tempNode;
}
//Display in alphabetical orderr
public void displayABC() {
System.out.print("Displaying in Alphabetical order");
Node tempDisplay = first;
while(tempDisplay != null) {
tempDisplay.displayNode();
tempDisplay = tempDisplay.next;
}
System.out.println("");
}
//Display lists forward and print
public void displayFrwd() {
System.out.print("Displaying in forward direction");
Node tempDisplay = first;
while(tempDisplay != null) {
tempDisplay.displayNode();
tempDisplay = tempDisplay.next;
}
System.out.println("");
}
//Display list backwards
public void displayBckwrd() {
System.out.print("Display in backward direction");
Node tempDisplay = last;
while(tempDisplay !=null) {
tempDisplay.displayNode();
tempDisplay = tempDisplay.previous;
}
System.out.println("");
}
//method to compare a node to a string
public void match() {
String str1 = "orange";
String str4 = "apple";
int result = str1.compareTo( str4 );
System.out.print(result);
}
}