-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
59 lines (42 loc) · 1.2 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
var stack = new Stack(5);
stack.Push(1);
stack.Push(2);
stack.Push(3);
stack.Push(4);
stack.Push(5);
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($"Is Empty: {stack.IsEmpty()}");
class Stack
{
private int[] _items;
private int _pivot;
public Stack(int capacity)
{
_pivot = -1;
_items = new int[capacity];
}
public void Push(int item)
{
if(_pivot == _items.Length - 1) throw new InvalidOperationException("Stack is full");
_items[++_pivot] = item;
}
public int Pop()
{
if(IsEmpty()) throw new InvalidOperationException("Stack is empty");
return _items[_pivot--];
}
public int Peek()
=> _items[_pivot];
public bool IsEmpty()
=> _pivot == -1;
}