- 论坛徽章:
- 0
|
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
typedef struct list{
void *value_address;
struct list *next;
}NODE;
int compare(void const *a, void const *b){
if (*(int *)a == *(int *)b)
return 0;
else
return -1;
}
NODE *Search_List(NODE *node, int (*compare)(void const *, void const *) , void const *desired_value){
while (node != NULL){
if (compare((node->value_address), desired_value) == 0)
break;
node = node->next;
}
return node;
}
int main(){
NODE *desired_node,*head,*p;
int desired_int_value = 5;
FILE *fp;
head = (NODE *)malloc(sizeof(NODE));
head->value_address =NULL;
head->next = NULL;
p = head->next;
if( (fp = fopen("t.txt","r")) == NULL ){
perror("fopen");
exit(-1);
}
while(feof(fp)==0){
p = (NODE *)malloc(sizeof(NODE));
printf("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n");
printf("%p\n",p->value_address);//地址为空。为什么啊???
fscanf(fp,"%d",(int *)p->value_address);//段错误应该在这里
printf("&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&\n");
p = p->next;
}
desired_node = Search_List(head, compare, &desired_int_value);
printf("%d\n",*(int *)desired_node->value_address);
return 0;
} |
|