[Sovled][완료]동적 할당 시 for 문으로 이름 다르게 반영하는 방법..

kombo67의 이미지

안녕하세요

Node *head = malloc(sizeof(struct NODE));
Node *node1 = malloc(sizeof(struct NODE));
Node *node2 = malloc(sizeof(struct NODE));
Node *node3 = malloc(sizeof(struct NODE));

이런식으로 노드를 선언해주고
내용을 추가한다고 했을때
뒤에 이어지는게
Node *node4 = malloc(sizeof(struct NODE));
Node *node5 = malloc(sizeof(struct NODE));
이런식으로 하고 싶거든요... 그래야 free 할때 반복문 써서 쉽게 할 수 있을꺼 같아서요...

이런 경우에는 어찌 짜야할까요...ㅜㅜ

해당 부분 코드 입니다.

    Node *curr = head->next;
    while(1) {
        while (curr != NULL) {
            printf("[%d] %s\n\t%s\n", i++, curr->list.name, curr->list.description);
            curr = curr->next;
        }
        printf("\n");
        printf("Project_1 : ");
        scanf("%d", &gotcha);
        if (gotcha == 99) {
            exit(0);
        } else if (gotcha == 0) {
            Node "node".i = struct NODE;
        }
        curr = head->next;
        i = 0;
    }
 
    return 0;
}

else if 문 쪽에
Node "node".i = sruct NODE 이 부분인데
어떻게 수정해야할까요...ㅠㅠ

raymundo의 이미지

head->next 와 curr->next 가 있는 걸 보니 NODE는 링크드 리스트의 노드인 것 같은데, 애써 링크드 리스트를 만들었는데 그 리스트의 모든 노드마다 각각 그 노드를 가리키는 변수들이 따로 있을 이유가 있는지부터 다시 고민해보시는 게 맞을 것 같고요. (그런 변수들 없어도 일괄적으로 free 하는 데에는 문제 없습니다)

어쨌거나 모든 노드를 개별 변수로 가리키고 싶다면 Node 포인터의 배열을 만드시면 되겠죠. 충분히 큰 크기의 배열과(아니면 동적으로 할당받든가) 해당 배열에서 현재까지 사용되는 원소의 마지막 인덱스를 가리키는 변수 하나.

Node *array[BIG_ENOUGH];
int index = 0;
 
// ...
array[ index ] = malloc( sizeof( Node ) );  // 새 노드
index++;
// ...

하지만 이렇게 만들었을 때 리스트의 중간 노드 하나를 삭제하는 순간부터 또 피곤해지겠네요.

좋은 하루 되세요!

kombo67의 이미지

제가 초보라 "각각 그 노드를 가리키는 변수들이 따로 있을 이유가 있는지부터 다시 고민해보시는 게 맞을 것 같고요" 이 부분이 이해가 안가
검색해보니 다른 방식을 찾아서 그렇게 진행하고 있습니다

밑은 함수 구현 부분입니다
 
typedef struct NODE {
    struct NODE *next;
    char name[20];
    char description[50];
} Node;
 
Node* Initlist() {
    struct NODE *head = malloc(sizeof(struct NODE));
    struct NODE *temp = malloc(sizeof(struct NODE));
    head->next = NULL;
 
 
    return head;
}
 
Node* Addlist(Node* target, Node *temp) {
    struct NODE *new = malloc(sizeof(struct NODE));
    *new = *temp;
    new->next = target->next;
    target->next = new;
 
    return new;
}
 
bool Dellist(Node *temp) {
    struct NODE *del = temp->next;
    if (del == NULL) {
        return false;
    }
    temp->next = del->next;
    free(del);
    return true;
}
 
밑은 메인입니다
    Node *target = Initlist();
    Node *head = target;
    Node temp;
 
    for (i = 0; i < 3; i++) {
        target = Addlist(target, &temp);
        strcpy(target->name, name[i]);
        strcpy(target->description, description[i]);
    }

다시 한번 감사합니다.

Yi Soo An@Google의 이미지

내용과 별개로...
컴파일 타임에 node1, node2, node3와 같이 만들고 접근할 수 있을까를 생각해봤는데...
for 문에서 막히네요.. idx를 1, 2, 3와 같이 전처리에서 변경하거나 trick을 쓰면 될거 같은데... 다른분들의 방법을 듣고 싶네요.

#include <stdio.h>
#include <stdlib.h>
 
#define MK_NAME(n) node##n
#define dbugf(x) printf("%d\n", *MK_NAME(x))
 
int
main(void)
{
    int idx;
    int *MK_NAME(1) = (int *)malloc(sizeof(int));
    int *MK_NAME(2) = (int *)malloc(sizeof(int));
    int *MK_NAME(3) = (int *)malloc(sizeof(int));
    int *MK_NAME(4) = (int *)malloc(sizeof(int));
 
    dbugf(1);
    *MK_NAME(1) = 100;
    dbugf(1);
 
    for (idx = 1; idx <= 4; idx++) {
        dbugf(idx);
    }
 
    return 0;
}

---------------
Happy Hacking!

kombo67의 이미지

댓글의 의미를 다 파악하진 못했지만
위와 같은 방법이 있다는 것을 처음 알았습니다.
위 댓글 방법대로 처리하느라 테스트는 못해봤지만 조만간 한번 위와 같이 진행해봐야겠네요 ㅎㅎ

다시 한번 감사합니다

댓글 달기

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