-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminMax.java
118 lines (101 loc) · 3.08 KB
/
minMax.java
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
public class MinMax
{
//Represent a node of the singly linked list
class Node
{
int data;
Node next;
public Node(int data)
{
this.data = data;
this.next = null;
}
}
//Represent the head and tail of the singly linked list
public Node head = null;
public Node tail = null;
//addNode() will add a new node to the list
public void addNode(int data)
{
//Create a new node
Node newNode = new Node(data);
//Checks if the list is empty
if(head == null)
{
//If list is empty, both head and tail will point to new node
head = newNode;
tail = newNode;
}
else
{
//newNode will be added after tail such that tail's next will point to newNode
tail.next = newNode;
//newNode will become new tail of the list
tail = newNode;
}
}
//minNode() will find out the minimum value node in the list
public void minNode()
{
Node current = head;
int min;
if(head == null)
{
System.out.println("List is empty");
}
else {
//Initializing min with head node data
min = head.data;
while(current != null)
{
//If current node's data is smaller than min
//Then, replace value of min with current node's data
if(min > current.data)
{
min = current.data;
}
current= current.next;
}
System.out.println("Minimum value node in the list: "+ min);
}
}
//maxNode() will find out the maximum value node in the list
public void maxNode()
{
Node current = head;
int max;
if(head == null)
{
System.out.println("List is empty");
}
else
{
//Initializing max with head node data
max = head.data;
while(current != null)
{
//If current node's data is greater than max
//Then, replace value of max with current node's data
if(max < current.data)
{
max = current.data;
}
current = current.next;
}
System.out.println("Maximum value node in the list: "+ max);
}
}
public static void main(String[] args)
{
MinMax sList = new MinMax();
//Adds data to the list
sList.addNode(5);
sList.addNode(8);
sList.addNode(1);
sList.addNode(6);
//Display the minimum value node in the list
sList.minNode();
//Display the maximum value node in the list
sList.maxNode();
}
}