-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
62 lines (44 loc) · 1.32 KB
/
Program.cs
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
var stack = new Stack();
stack.Push(11);
stack.Push(21);
stack.Push(31);
stack.Push(41);
stack.Push(51);
stack.Push(61);
Console.WriteLine($"Is Empty: {stack.IsEmpty()}");
Console.WriteLine($"Peek: {stack.Peek()}");
Console.WriteLine($"Pop: {stack.Pop()}");
Console.WriteLine($"Peek: {stack.Peek()}");
Console.WriteLine($"Pop: {stack.Pop()}");
Console.WriteLine($"Peek: {stack.Peek()}");
Console.WriteLine($"Pop: {stack.Pop()}");
Console.WriteLine($"Peek: {stack.Peek()}");
Console.WriteLine($"Pop: {stack.Pop()}");
Console.WriteLine($"Peek: {stack.Peek()}");
Console.WriteLine($"Pop: {stack.Pop()}");
Console.WriteLine($"Peek: {stack.Peek()}");
Console.WriteLine($"Pop: {stack.Pop()}");
Console.WriteLine($"Is Empty: {stack.IsEmpty()}");
class Stack
{
private record Node(int Value, Node? Next);
private Node? _head;
public Stack()
=> _head = null;
public void Push(int item)
=> _head = new Node(item, _head);
public int Pop()
{
if (IsEmpty()) throw new InvalidOperationException("Stack is empty");
var value = _head.Value;
_head = _head.Next;
return value;
}
public int Peek()
{
if (IsEmpty()) throw new InvalidOperationException("Stack is empty");
return _head.Value;
}
public bool IsEmpty()
=> _head is null;
}