1. 기본 스택 (Stack using Linked List)스택은 후입선출(LIFO) 방식으로, 연결 리스트를 사용하여 스택을 구현합니다.#include using namespace std;class Node {public: int data; Node* next; Node(int value) { data = value; next = nullptr; }};class Stack {private: Node* top;public: Stack() { top = nullptr; } bool isEmpty() { return top == nullptr; } void push(int value) { N..