2021
07-26
07-26
C语言基于单链表实现通讯录功能
本文实例为大家分享了C语言基于单链表实现通讯录功能的具体代码,供大家参考,具体内容如下#include<stdio.h>#include<stdlib.h>#include<string.h>#pragmawarning(disable:4996);//解决VS报严重性代码错误typedefstructLNode{charname[20];doubleph_number;structLNode*next;}LinkNode;//创建通讯录LNode*CreateList(LNode*&L){LNode*s,*r;intn;L=(LNode*)malloc(sizeof(LNode));r=L;printf("请输入要...
继续阅读 >