Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Stack
//Title of this code #include <iostream> struct Node { int data; Node* next; Node(int d, Node *n) : data(d), next(n) {} }; class Stack { Node *lifoList; Node *sortedList; Stack(){} ~Stack(){} void push(int d) {} int pop() {} }; int main() { std::cout << "Hello, world!\n"; }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Template
thermal_containers
Minimum number of jumps DP
unordered_map
QuickSort
Średnia bez zera
template inhertinace
Fractional Knapsack
weak_ptr and Circle_reference
Scope guarding
Please log in to post a comment.