답이 않나옵니다 ㅜㅜ 헬프

gy03098의 이미지

#include
#include
#include

typedef struct node
{
char data[10];
struct node * link;
}node;

node * head;

void createList();
node * makeNode(char *);
void insertFirstNode(node *);
void printList();
void deleteFirstNode();

int main()
{
node * newNode;

createList();

newnode = makeNode("월");
insertFirstNode(newNode);

newnode = makeNode("화");
insertFirstNode(newNode);

newnode = makeNode("수");
insertFirstNode(newNode);

newnode = makeNode("목");
insertFirstNode(newNode);

printList();

deleteFirstNode();
printList();
deleteFirstNode();
printList();
deleteFirstNode();
printList();
deleteFirstNode();
printList();

deleteFirstNode();

return 0;
}

void createList()
{
head = NULL;
}

node * makeNode(char * data)
{
node * newNode;
newNode = malloc(sizeof(node));

strcpy(newNode->data,data);
newNode->link = NULL;

return newNode;
}

void insertFirstNode(node * newNode)
{
node *p;

if(head == NULL)
{
head = newNode;
return;
}

p = head;

while(p->link !=NULL)
p = p->link;

p->link = newNode;
}

void printList()
{
node * p = head;

printf("[");
while(p !=NULL)
{
printf("%s",p->data);
p = p->link;
}
printf("]");
}

void deleteFirstNode()
{
node *p, *q;
p = q = head;

if(head == NULL)
{
printf("no deletion : empty list\n");
return;
}

while(p->link !=NULL)
{
q = p;
p = p->link;
}

if(p == head)
{
free(p);
head = NULL;
return;
}

free(p);
q->link = NULL;
}

위처럼 노드를 사용한 단순연결리스트를 만들어봣는데 디버깅하면 메인부분에 newNode = makeNode("월") 부분에서 에러가나네요 ㅠㅠ
이걸 역순연결리스트로도 만들고싶은데 어디부분을 고쳐야할지 잘모르겟네요 아래 첨부파일올렷습니다

shint의 이미지

http://codepad.org/zhCZlfo6

newNode 를 newnode 로 대소문자가 틀린거 같습니다.

- 컴파일 할때. 기존 생성된 파일을 삭제하고. 다시 해보세요.

- 디버깅 결과는 한줄씩 출력해서 확인해보세요.

#include <stdio.h>
 
typedef struct node
{
    char data[10];
    struct node * link;
}node;
 
node * head;
 
void createList();
node * makeNode(char *);
void insertFirstNode(node *);
void printList();
void deleteFirstNode();
 
int main()
{
    node * newNode;
 
    createList();
 
    newNode = makeNode("월");
    insertFirstNode(newNode);
 
    newNode = makeNode("화");
    insertFirstNode(newNode);
 
    newNode = makeNode("수");
    insertFirstNode(newNode);
 
    newNode = makeNode("목");
    insertFirstNode(newNode);
 
    printList();
 
    deleteFirstNode();
    printList();
    deleteFirstNode();
    printList();
    deleteFirstNode();
    printList();
    deleteFirstNode();
    printList();
 
    deleteFirstNode();
 
    return 0;
}
 
void createList()
{
    head = NULL;
}
 
node * makeNode(char * data)
{
    node * newNode;
    newNode = malloc(sizeof(node));
 
    strcpy(newNode->data, data);
    newNode->link = NULL;
 
    return newNode;
}
 
void insertFirstNode(node * newNode)
{
    node *p;
 
    if(head == NULL)
    {
        head = newNode;
        return;
    }
 
    p = head;
    printf("insert\n");
    printf("p %x\n", p);
 
    while(p->link !=NULL)
    {
        p = p->link;
        printf("p %x\n", p);
    }
 
    p->link = newNode;
}
 
void printList()
{
    node * p = head;
 
    printf("[");
    while(p !=NULL)
    {
        printf("%s", p->data);
        p = p->link;
    }
    printf("]");
    printf("\n");
}
 
void deleteFirstNode()
{
    node *p, *q;
    p = q = head;
 
    if(head == NULL)
    {
        printf("no deletion : empty list\n");
        return;
    }
 
    printf("delete\n");
    while(p->link !=NULL)
    {
        q = p;
        printf("q %x\n", q);
        p = p->link;
    }
 
    if(p == head)
    {
        printf("free(p) %x\n", p);
        free(p);
        head = NULL;
        return;
    }
 
    free(p);
    q->link = NULL;
}

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

댓글 달기

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