免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3151 | 回复: 9
打印 上一主题 下一主题

关于结构指针与动态内存分配问题。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-04-05 10:09 |只看该作者 |倒序浏览

  1. #include <stdio.h>;
  2. #include <string.h>;

  3. typedef struct node {
  4.         char        info;
  5.         struct node        *link;
  6. } NODE;

  7. void str2nodestr(char *string, NODE *node_string);

  8. void main()
  9. {
  10.    NODE        node_string, *head;

  11.    memset(&node_string,0x0,sizeof(NODE));

  12.    str2nodestr("abcdEND", &node_string);

  13.    head=&node_string;
  14.    while( head->;info!=NULL ) {
  15.         putc(head->;info,stdout);
  16.         head=head->;link;
  17.    }
  18.    putc('\n',stdout);
  19. }

  20. void str2nodestr(char *string, NODE *node_string)
  21. {
  22.    NODE *node_char, *p=NULL;
  23.    char        ch;

  24.    while ( (ch=*string)!= '\0' ) {
  25.         node_char=(NODE *)malloc(sizeof(NODE));
  26.         node_char->;info=ch;
  27.         node_char->;link=NULL;
  28.         if (node_string->;info==NULL) {
  29.                 node_string=node_char;
  30.                 p=node_string;
  31.         } else {
  32.                 p->;link=node_char;
  33.                 p=p->;link;
  34.         }
  35.         ++string;
  36.    }
  37. }
复制代码


调用子函数返回后,主函数中的node_string还是没改变,请指教。THX。

论坛徽章:
0
2 [报告]
发表于 2005-04-05 10:16 |只看该作者

关于结构指针与动态内存分配问题。

典型的造成内存泄漏的做法。C 语言中子函数对参数的修改在函数返回后就无效了。如果不想从子函数中返回node_string,可以在主函数中声明一个二级指针。传递参数时用NODE **node_string而不是NODE *node_string。

论坛徽章:
0
3 [报告]
发表于 2005-04-05 11:08 |只看该作者

关于结构指针与动态内存分配问题。

是不是主程序里先要给node_string分配空间,然后再把node_string的指针传给str2nodestr后,在str2nodestr中的操作才能影响主程序里的node_string。下面是我改完的,运行正确,内存也应该不会泄漏了吧。

  1. #include <stdio.h>;
  2. #include <string.h>;

  3. typedef struct node {
  4.         char        info;
  5.         struct node        *link;
  6. } NODE;

  7. void str2nodestr(char *string, NODE *node_string);

  8. void main()
  9. {
  10.    static char        aString[]="abcEND";
  11.    NODE        *node_string, *head;
  12.    long        sizeof_node_string;

  13.    sizeof_node_string=sizeof(NODE)*strlen(aString);
  14.    node_string=(NODE *)malloc(sizeof_node_string);
  15.    memset(node_string,0x0,sizeof(sizeof_node_string));

  16.    str2nodestr(aString, node_string);

  17.    head=node_string;
  18.    while( head!=NULL ) {
  19.         putc(head->;info,stdout);
  20.         head=head->;link;
  21.    }
  22.    putc('\n',stdout);
  23.    
  24.    free(node_string);
  25. }

  26. void str2nodestr(char *string, NODE *node_string)
  27. {
  28.    NODE *head;

  29.    head=node_string;
  30.    while ( (*string)!= '\0' ) {
  31.         head->;info=*string;
  32.         head->;link=head+sizeof(NODE);
  33.         head=head->;link;
  34.         ++string;
  35.    }
  36.    head->;link=NULL;
  37. }
复制代码

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
4 [报告]
发表于 2005-04-05 11:24 |只看该作者

关于结构指针与动态内存分配问题。

很简单啊!
把第一个程序中str2nodestr函数的
node_string=node_char;
改成
node_string->;info = node_char->;info;
即可
但在main中
while( head->;info!=NULL ) {
...
}
是错误的,要改成
head->;link!=NULL

论坛徽章:
0
5 [报告]
发表于 2005-04-05 12:09 |只看该作者

关于结构指针与动态内存分配问题。

这样做内存是否会产生泄漏?

  1. #include <stdio.h>;
  2. #include <string.h>;

  3. typedef struct node {
  4.         char        info;
  5.         struct node        *link;
  6. } NODE;

  7. NODE *str2nodestr(char *string);
  8. void print_node_string(NODE *node_string);

  9. void main()
  10. {
  11.    static char        aString[]="abcEND";
  12.    NODE        *head;

  13.    head=str2nodestr(aString);
  14.    print_node_string(head);
  15.    
  16.    free(head);
  17. }

  18. NODE *str2nodestr(char *string)
  19. {
  20.    NODE *node_string, *head;
  21.    long        sizeof_node_string;

  22.    sizeof_node_string=sizeof(NODE)*strlen(string);
  23.    node_string=(NODE *)malloc(sizeof_node_string);
  24.    memset(node_string,0x0,sizeof(sizeof_node_string));
  25.    head=node_string;
  26.    while ( (*string)!= '\0' ) {
  27.         node_string->;info=*string;
  28.         node_string->;link=node_string+sizeof(NODE);
  29.         node_string=node_string->;link;
  30.         ++string;
  31.    }
  32.    node_string->;link=NULL;

  33.    return head;
  34. }

  35. void print_node_string(NODE *node_string)
  36. {
  37.    NODE *head=node_string;

  38.    while( head!=NULL ) {
  39.         putc(head->;info,stdout);
  40.         head=head->;link;
  41.    }
  42.    putc('\n',stdout);
  43. }
复制代码

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
6 [报告]
发表于 2005-04-05 12:19 |只看该作者

关于结构指针与动态内存分配问题。

你这样做还能叫链表?

论坛徽章:
0
7 [报告]
发表于 2005-04-05 12:45 |只看该作者

关于结构指针与动态内存分配问题。

我看着也不像

我是想做一个能把任意长度的字符串转成链表并用子函数的形式实现的程序。

这样应该可以了吧?

  1. #include <stdio.h>;
  2. #include <string.h>;

  3. typedef struct node {
  4.         char        info;
  5.         struct node        *link;
  6. } NODE;

  7. NODE *str2nodestr(char *string);
  8. void print_node_string(NODE *node_string);

  9. void main()
  10. {
  11.    static char        aString[]="abcEND";
  12.    NODE        *ns1,*ns2;

  13.    ns1=str2nodestr(aString);
  14.    ns2=str2nodestr("1234");
  15.    
  16.    print_node_string(ns1);
  17.    print_node_string(ns2);
  18.    
  19.    free(ns1);
  20.    free(ns2);
  21. }

  22. NODE *str2nodestr(char *string)
  23. {
  24.    NODE *p,*node_char, *head=NULL;

  25.    while ( (*string)!= '\0' ) {
  26.         node_char=(NODE *)malloc(sizeof(NODE));
  27.         node_char->;info=*string;
  28.         node_char->;link=NULL;
  29.         if (head==NULL) {
  30.                 head=node_char;
  31.                 p=head;
  32.         } else {
  33.                 p->;link=node_char;
  34.                 p=p->;link;
  35.         }
  36.         ++string;
  37.    }

  38.    return head;
  39. }

  40. void print_node_string(NODE *node_string)
  41. {
  42.    NODE *head=node_string;

  43.    while( head!=NULL ) {
  44.         putc(head->;info,stdout);
  45.         head=head->;link;
  46.    }
  47.    putc('\n',stdout);
  48. }
复制代码

论坛徽章:
0
8 [报告]
发表于 2005-04-05 14:42 |只看该作者

关于结构指针与动态内存分配问题。

释放链表所用的内存空间是否要自己写函数?

论坛徽章:
0
9 [报告]
发表于 2005-04-05 15:48 |只看该作者

关于结构指针与动态内存分配问题。

感觉上是需要自己写函数释放的。
因为分配的时候每个字符都是malloc了一个NODE大小的空间的。直接用free释放,感觉上是只释放了第一个字符的存放空间。

代码:

  1. void free_node_string(NODE *node_string)
  2. {
  3. NODE *free_node = NULL;
  4. NODE *head=node_string;

  5.   while( head!=NULL ) {
  6.     free_node = head;
  7.     head=head->;link;
  8.     free( free_node );
  9.   }
  10. }
复制代码

论坛徽章:
0
10 [报告]
发表于 2005-04-05 17:52 |只看该作者

关于结构指针与动态内存分配问题。

谢谢,我也是这么做的。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP