- 论坛徽章:
- 0
|
- #include <stdio.h>;
- #include <string.h>;
- typedef struct node {
- char info;
- struct node *link;
- } NODE;
- void str2nodestr(char *string, NODE *node_string);
- void main()
- {
- NODE node_string, *head;
- memset(&node_string,0x0,sizeof(NODE));
- str2nodestr("abcdEND", &node_string);
- head=&node_string;
- while( head->;info!=NULL ) {
- putc(head->;info,stdout);
- head=head->;link;
- }
- putc('\n',stdout);
- }
- void str2nodestr(char *string, NODE *node_string)
- {
- NODE *node_char, *p=NULL;
- char ch;
- while ( (ch=*string)!= '\0' ) {
- node_char=(NODE *)malloc(sizeof(NODE));
- node_char->;info=ch;
- node_char->;link=NULL;
- if (node_string->;info==NULL) {
- node_string=node_char;
- p=node_string;
- } else {
- p->;link=node_char;
- p=p->;link;
- }
- ++string;
- }
- }
复制代码
调用子函数返回后,主函数中的node_string还是没改变,请指教。THX。 |
|