You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
480 B
29 lines
480 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Generics
|
|
{
|
|
class MyStack<T>
|
|
{
|
|
T[] _elements;
|
|
int pos = 0;
|
|
|
|
public MyStack()
|
|
{
|
|
_elements = new T[100];
|
|
}
|
|
|
|
public void Push(T element)
|
|
{
|
|
_elements[++pos] = element;
|
|
}
|
|
|
|
public T Pop()
|
|
{
|
|
return _elements[pos--];
|
|
}
|
|
}
|
|
}
|
|
|