Skip to content

Instantly share code, notes, and snippets.

@akiniwa
Created August 13, 2015 04:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akiniwa/355cec387c30d1d83a19 to your computer and use it in GitHub Desktop.
Save akiniwa/355cec387c30d1d83a19 to your computer and use it in GitHub Desktop.
int top;
int S[1000];
void push(int d) {
S[++top] = d;
}
int pop() {
return S[top--];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment