Last active
December 17, 2018 03:46
-
-
Save rushout09/7d2e7f63894b28d0347aa05178c2e068 to your computer and use it in GitHub Desktop.
A program to perform the push operation in stack.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Test Case 1 | |
Input (stdin) | |
6 | |
3 5 9 1 12 15 | |
Expected Output | |
Top=15 | |
15 | |
12 | |
1 | |
9 | |
5 | |
3 | |
#Test Case 2 | |
Input (stdin) | |
7 | |
9 4 66 34 23 45 22 | |
Expected Output | |
Top=22 | |
22 | |
45 | |
23 | |
34 | |
66 | |
4 | |
9 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
struct node{ | |
int data; | |
struct node *next; | |
}; | |
struct node *top; | |
void push(int v){ | |
struct node *t; | |
t = (struct node *)malloc(sizeof(struct node )); | |
t->data = v; | |
t->next = NULL; | |
if(top==NULL) | |
top = t; | |
else{ | |
t->next = top; | |
top = t; | |
} | |
} | |
void disp(){ | |
struct node *p=top; | |
while(p!=NULL){ | |
printf("%d\n",p->data); | |
p=p->next; | |
} | |
} | |
int main() | |
{ | |
int n,x,i; | |
top=NULL; | |
scanf("%d",&n); | |
for(i=0;i<n;i++){ | |
scanf("%d",&x); | |
push(x); | |
} | |
printf("Top=%d\n",top->data); | |
disp(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment