📄 student_find.c
字号:
student *find_no(student *head,void *no){ student *p; p=head; int num=*(int *)no; while(p!=NULL){ if(p->no==num) break; p=p->next; } return p;}student *find_name(student *head,void *str){ student *p; p=head; char *str_name; str_name=(char *)str; while(p!=NULL){ if(strcmp(p->name,str_name)==0) break; p=p->next; } return p;}student *find(student *head,void *value,student*(*find_value)()){ return find_value(head,value);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -