1. 首页
  2. 数据库
  3. PostgreSQL
  4. 通讯录管理 数据结构.docx

通讯录管理 数据结构.docx

上传者: 2020-12-12 10:41:25上传 DOCX文件 12.73KB 热度 17次
#include #include #include typedef struct{ char num[20]; char name[20]; char phone[20]; char addr[20]; }datatype; typedef struct node{ datatype data; struct node * next; }
用户评论