mirror of
https://github.com/krahets/hello-algo.git
synced 2026-06-28 08:34:28 +00:00
2778a6f9c7
* Review the EN heading format. * Fix pythontutor headings. * Fix pythontutor headings. * bug fixes * Fix headings in **/summary.md * Revisit the CN-to-EN translation for Python code using Claude-4.5 * Revisit the CN-to-EN translation for Java code using Claude-4.5 * Revisit the CN-to-EN translation for Cpp code using Claude-4.5. * Fix the dictionary. * Fix cpp code translation for the multipart strings. * Translate Go code to English. * Update workflows to test EN code. * Add EN translation for C. * Add EN translation for CSharp. * Add EN translation for Swift. * Trigger the CI check. * Revert. * Update en/hash_map.md * Add the EN version of Dart code. * Add the EN version of Kotlin code. * Add missing code files. * Add the EN version of JavaScript code. * Add the EN version of TypeScript code. * Fix the workflows. * Add the EN version of Ruby code. * Add the EN version of Rust code. * Update the CI check for the English version code. * Update Python CI check. * Fix cmakelists for en/C code. * Fix Ruby comments
85 lines
2.0 KiB
C#
85 lines
2.0 KiB
C#
/**
|
|
* File: array_stack.cs
|
|
* Created Time: 2022-12-23
|
|
* Author: haptear (haptear@hotmail.com)
|
|
*/
|
|
|
|
namespace hello_algo.chapter_stack_and_queue;
|
|
|
|
/* Stack based on array implementation */
|
|
class ArrayStack {
|
|
List<int> stack;
|
|
public ArrayStack() {
|
|
// Initialize list (dynamic array)
|
|
stack = [];
|
|
}
|
|
|
|
/* Get the length of the stack */
|
|
public int Size() {
|
|
return stack.Count;
|
|
}
|
|
|
|
/* Check if the stack is empty */
|
|
public bool IsEmpty() {
|
|
return Size() == 0;
|
|
}
|
|
|
|
/* Push */
|
|
public void Push(int num) {
|
|
stack.Add(num);
|
|
}
|
|
|
|
/* Pop */
|
|
public int Pop() {
|
|
if (IsEmpty())
|
|
throw new Exception();
|
|
var val = Peek();
|
|
stack.RemoveAt(Size() - 1);
|
|
return val;
|
|
}
|
|
|
|
/* Return list for printing */
|
|
public int Peek() {
|
|
if (IsEmpty())
|
|
throw new Exception();
|
|
return stack[Size() - 1];
|
|
}
|
|
|
|
/* Convert List to Array and return */
|
|
public int[] ToArray() {
|
|
return [.. stack];
|
|
}
|
|
}
|
|
|
|
public class array_stack {
|
|
[Test]
|
|
public void Test() {
|
|
/* Access top of the stack element */
|
|
ArrayStack stack = new();
|
|
|
|
/* Elements push onto stack */
|
|
stack.Push(1);
|
|
stack.Push(3);
|
|
stack.Push(2);
|
|
stack.Push(5);
|
|
stack.Push(4);
|
|
Console.WriteLine("Stack stack = " + string.Join(",", stack.ToArray()));
|
|
|
|
/* Return list for printing */
|
|
int peek = stack.Peek();
|
|
Console.WriteLine("Stack top element peek = " + peek);
|
|
|
|
/* Element pop from stack */
|
|
int pop = stack.Pop();
|
|
Console.WriteLine("Pop element pop = " + pop + ", after pop, stack = " + string.Join(",", stack.ToArray()));
|
|
|
|
/* Get the length of the stack */
|
|
int size = stack.Size();
|
|
Console.WriteLine("Stack length size = " + size);
|
|
|
|
/* Check if empty */
|
|
bool isEmpty = stack.IsEmpty();
|
|
Console.WriteLine("Stack is empty = " + isEmpty);
|
|
}
|
|
}
|