-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStack with arrays implementation.cs
58 lines (55 loc) · 1.28 KB
/
Stack with arrays implementation.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
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
class Solution
{
static void Main(String[] args)
{
Stack stk = new Stack(); // from my custom Class Stack
stk.Push(5);
stk.Push(7);
stk.Push(9);
while (!stk.IsEmpty())
{
Console.WriteLine(stk.Top());
stk.Pop();
}
Console.WriteLine("=================================================");
Stack<int> stack = new Stack<int>(); // built in Stack
stack.Push(5);
stack.Push(7);
stack.Push(9);
foreach (var s in stack)
{
Console.WriteLine(s);
}
}
}
class Stack
{
int[] arr = new int[100];
int top = -1; // this make arr empty
public void Push(int val)
{
if (top==99){return; } // to make sure that array not empty
//top++;
arr[++top] = val;
}
public int Pop()
{
if (IsEmpty()){return -1;}
var tempRemoved = top;
top--;
return arr[tempRemoved];
}
public int Top()
{
if (IsEmpty()){return -1;} // to make sure that array not empty
return arr[top];
}
public bool IsEmpty()
{
return top == -1 ? true : false;
}
}