본문 바로가기

데이터구조/소스코드

Stack handling string

반응형
SMALL
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
char *stack[10];
int top = -1;

char *pop()
{
	char *temp = stack[top];
	top--;
	return temp;
}

void push(char *_str)
{
	char *temp;
	temp = (char *)malloc(strlen(_str) + 1);
	strcpy(temp, _str);

	top++;
	stack[top] = temp;
	return;
}
반응형
LIST

'데이터구조 > 소스코드' 카테고리의 다른 글

OJ 1164  (0) 2016.04.25
OJ 1162  (0) 2016.04.25
SLL with character string member  (0) 2016.04.14
String function review  (0) 2016.04.14
OJ 1131번 해답  (0) 2016.04.11