postfix... 이거 어떤책에 나오는 소스인가요?

hyunuck의 이미지

자료구조시간에, 피곤해서 잠깐 자고있어났더니..
postfix 라는걸 했더군요...
책에도 없는 소스를 주석 달아오라네요..^^
뒤적이다보니 외국사이트에도 올라가있고,.. 꽤 알려진 책에서 나온 소스같던데, 어떤 책인지 좀 알려주시면 감사~ ^^;

#include <stdio.h>
#include <stdlib.h>

#define MAXCOLS 60
#define TRUE 1
#define FALSE 0

#define PLUS 1
#define MINUS 1
#define MUL 2
#define DIV 2

struct stack
{
	int top;
	char items[MAXCOLS];
};

int empty(struct stack *ps)
{
	if(ps->top == -1)
		return TRUE;
	else
		return FALSE;
}

char pop(struct stack *ps)
{
	if(empty(ps))
	{
		printf("%s", "stack underflow");
		exit(1);
	}
	return (ps->items[ps->top--]);
}

void popandtest(struct stack *ps, char *px, int *pund)
{
	if(empty(ps))
	{
		*pund = TRUE;
		return;
	}
	*pund = FALSE;
	*px = ps->items[ps->top--];
	return;
}

void push(struct stack *ps, char x)
{
	ps->items[++(ps->top)] = x;
	return;
}

int isoperand(char ch)
{
	if((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9'))
		return TRUE;
	return FALSE;
}

int prcd(char op1, char op2)
{
	switch(op1)
	{
		case '+' :
			op1 = PLUS;
			break;
		case '-' :
			op1 = MINUS;
			break;
		case '*' :
			op1 = MUL;
			break;
		case '/' :
			op1 = DIV;
			break;
	}

	switch(op2)
	{
		case '+' :
			op2 = PLUS;
			break;
		case '-' :
			op2 = MINUS;
			break;
		case '*' :
			op2 = MUL;
			break;
		case '/' :
			op2 = DIV;
			break;
	}

	if(op1 == '(')
		return FALSE;
	if(op2 == '(')
		return FALSE;
	if(op2 == ')')
		return TRUE;

	if(op1 >= op2)
		return TRUE;
	else 
		return FALSE;
}

void postfix(char in[], char po[])
{
	int position, und;
	int outpos = 0;
	char topsymb = '+';
	char symb;
	struct stack opstk;
	opstk.top = -1;

	for(position = 0; (symb = in[position]) != '\0'; position++)
		if(isoperand(symb))
			po[outpos++] = symb;
		else
		{
			popandtest(&opstk, &topsymb, &und);
			while(!und && prcd(topsymb, symb))
			{
				po[outpos++] = topsymb;
				popandtest(&opstk, &topsymb, &und);
			}
			if(!und)
				push(&opstk, topsymb);
			if(und || (symb != ')'))
				push(&opstk, symb);
			else
				topsymb = pop(&opstk);
		}
		while(!empty(&opstk))
			po[outpos++] = pop(&opstk);
		po[outpos] = '\0';
		return;
}

void main(void)
{
	char infix[MAXCOLS];
	char postr[MAXCOLS];
	int pos = 0;

	while((infix[pos++] = getchar()) != '\n');
	infix[--pos] = '\0';
	printf("%s%s", "the original infix expression is ", infix);
	postfix(infix, postr);
	printf("\n%s\n", postr);
}

cjy1126의 이미지

웬만한 자료구조 알고리즘 책에는 다 나옵니다.

전위, 후위, 중위... 연산 계산기 만들기 -_-;

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.