연결리스트를 사용한 스택 구현

dcds2002의 이미지

#include <stdio.h>
#include <stdlib.h>
#define MAX 10 //스택의 최대수
 
/*스택의 정의*/
typedef struct {
	int key;
}element;
typedef struct stack *stackpoint;
typedef struct stack {
	element data;
	stackpoint link;
} stack;
stackpoint top[MAX];
void push(int i, element item);
element pop(int i);
void stackEmpty();
 
void main() {
	int i = 0, n;
	element item, x;
	for (i = 0; i <= 1; i++) 
		top[i] = NULL ;
	for (i = 0; i <= 1; i++) {
		printf("%d 번째 값입력 :", i+1);
		scanf_s("%d", &item);
		push(i, item);
	}
	printf("제거할 스택의 위치를 입력해주세요 : ");
	scanf_s("%d", &n);
	x = pop(n);
	printf("제거된 값은 %d 입니다. ", x);
}
 
//스택을 연결리스트에 넣는 함수
void push(int i, element item) {
	stackpoint temp;
	temp = (stackpoint)malloc(sizeof(stackpoint));
	temp->data = item;
	temp->link = top[i];
	top[i] = temp;
}
 
//스택을 빼는 함수
element pop(int i) {
	stackpoint temp = top[i];
	element items;
	if (!temp)
		stackEmpty();
	items = temp->data;
	top[i] = temp->link;
	free(temp);
	return items;
}
void stackEmpty() {
	printf("스택이 비어있습니다.\n");
	exit(EXIT_FAILURE);
}

안녕하세요 혼자 공부하는 학생입니다.
말로 표현하기가 힘들어서 사진으로 올려드립니ㅏㄷ.
저런 스택을 구현하려고합니다 근데 다 된거같은데 temp의 link와 top에 저장되는 주소가
다 0만 입력됩니다... 저걸 구현하기위해서 뭘 수정하고 뭘 추가해야 할까요...
너무 답답해서 글 써봅니다...

File attachments: 
첨부파일 크기
Image icon KakaoTalk_20210510_003522602.jpg2.73 MB
세벌의 이미지

중간 중간에 printf 함수를 써서 변수에 예상한 값이 잘 들어가나 살펴보셔요.

dcds2002의 이미지

print를 계속 해보는데 주소값이 안들어가서 어떻게 해야할지 모르겟어요

Anti-Lock의 이미지

-	temp = (stackpoint)malloc(sizeof(stackpoint));
+	temp = (stackpoint)malloc(sizeof(struct stack));
chanik의 이미지

$ cat stack.diff
--- stack_orig.c
+++ stack.c
@@ -23,13 +23,13 @@
                top[i] = NULL ;
        for (i = 0; i <= 1; i++) {
                printf("%d 번째 값입력 :", i+1);
-               scanf_s("%d", &item);
+               scanf("%d", &item.key);
                push(i, item);
        }
        printf("제거할 스택의 위치를 입력해주세요 : ");
-       scanf_s("%d", &n);
+       scanf("%d", &n);
        x = pop(n);
-       printf("제거된 값은 %d 입니다. ", x);
+       printf("제거된 값은 %d 입니다. ", x.key);
 }
 
 //스택을 연결리스트에 넣는 함수
 
$ gcc stack.c
$ ./a.out
1 번째 값입력 :10
2 번째 값입력 :20
제거할 스택의 위치를 입력해주세요 : 1
제거된 값은 20 입니다. 
 
$ ./a.out
1 번째 값입력 :10
2 번째 값입력 :20
제거할 스택의 위치를 입력해주세요 : 0
제거된 값은 10 입니다.

printf(), scanf() 오류와 warning만 해결하고 실행해본 결과입니다. 원하시는 결과인지는 모르겠습니다만 주소가 0이라는 증상은 안 나오는 것 같습니다.

chanik의 이미지

다른 분이 지적하신 malloc 부분 버그를 보니 제가 실행해볼때 오류가 안 생긴게 신기하군요. 8바이트 할당해놓고 12바이트(정정: 패딩이 있으므로 16바이트) 할당받은 것처럼 썼으니 힙에서 엉뚱한 지점을 건드리고 있었을텐데요.

아래 페이지를 보니, glibc의 malloc() 최소할당단위가 64-bit 시스템에서는 24 또는 32바이트라고 나오네요. 이 크기 덕분에 버그가 숨을 수 있었나봅니다.

https://defenit.kr/2019/09/30/Pwn/%E3%84%B4%20Research/malloc/

  malloc(size_t n)
 ... 중략 ...
  If n is zero, malloc returns a minumum-sized chunk. (The minimum
  size is 16 bytes on most 32bit systems, and 24 or 32 bytes on 64bit
  systems.)
지나가다2의 이미지

typedef struct stack {
	element data;
	stackpoint *link;
} stack;
 
//스택을 연결리스트에 넣는 함수
void push(int i, element item) {
	stackpoint temp;
	temp = (stackpoint)malloc(sizeof(stack));
	temp->data = item;
	temp->link = &top[i];
	top[i] = temp;
}
 
//스택을 빼는 함수
element pop(int i) {
	stackpoint temp = top[i];
	element items;
	if (!temp)
		stackEmpty();
	items = temp->data;
	top[i] = *temp->link;
	free(temp);
	return items;
}

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.