登录
首页 » 数据结构 » the implementation of the code reader database records collected from the field.

the implementation of the code reader database records collected from the field.

于 2023-02-21 发布 文件大小:80.88 kB
0 173
下载积分: 2 下载次数: 1

代码说明:

本代码实现读取数据库记录集的字段名。-the implementation of the code reader database records collected from the field.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Infix expression to Reverse Polish conversion of program code, learning data str...
    中缀表达式到逆波兰式转换的程序代码,学习数据结构的可以-Infix expression to Reverse Polish conversion of program code, learning data structures can be
    2022-10-19 05:20:03下载
    积分:1
  • 冒泡排序算法,最基础的Bubble sort 算法,经典
    冒泡排序算法,最基础的Bubble sort 算法,经典-bubble sort
    2022-11-05 04:15:03下载
    积分:1
  • 2022-04-28 07:23:49下载
    积分:1
  • ——链表(双向循环链表)
    双向循环链表节点:数据域+指针域指针域:一个指针指向前一个同类型节点,另一个指针指向后一个同类型节点(1)设计节点struct db_node{int data;struct db_node * prev;struct db_node * next;};(2)创建空链表//创建了一个只有头节点的双向循环链表,返回头节点的地址struct db_node * create_db_list(void){struct db_node * phead = (struct db_node *)malloc(sizeof(struct db_node));if(phead == NULL)exit(-1);else{phead->next = phead;phead->prev = phead;}return phead;}(3)制造新节点//制造新节点,返回新节点的地址struct db_node * make_db_node(int value){struct db_node * pnew = (struct db_node *)malloc(sizeof(struct db_node));if(pnew == NULL)printf("malloc failed! ");else{pnew->data = value;pnew->next = NULL;pnew->prev = NULL;}return pnew;}(4)插入节点//把pnew指向的节点插入到头节点的前面,也就是整个链表的末尾bo
    2022-02-14 07:06:11下载
    积分:1
  • 一个经典的C程序的代码集合
    一个经典的C程序的代码集合-a classic C program code sets!
    2022-01-27 23:39:18下载
    积分:1
  • 用vc基于库编程源代码
    用vc基于数据库编程源代码-with vc-based database programming source code
    2022-02-15 12:10:43下载
    积分:1
  • 学校管理系统
    应用背景和公司的;和公司的;和;学校;管理系统;您可以管理您的学校从这个代码,谢谢关键技术您可以更新您的学生,教师的细节,从这个应用程序,它将是容易您的工作
    2023-03-23 19:55:04下载
    积分:1
  • Queen
    皇后问题,第2解法! 皇后问题,第2解法!-Queen
    2022-01-27 20:31:45下载
    积分:1
  • Research and information management can realize the function of the system, have...
    可实现科研信息管理系统的功能,有项目管理,教师管理,科研项目管理等多项内容-Research and information management can realize the function of the system, have project management, teacher management, research management, and so a number of content
    2022-05-13 15:44:57下载
    积分:1
  • on data structures and algorithms is the teacher's curriculum courseware all...
    这是我上数据结构和算法课程是老师的课件 所有算法都用c++实现拉 .比用伪代码描叙要 好得多-on data structures and algorithms is the teacher"s curriculum courseware all algorithms are used to achieve c Rafah. Pseudo code than depicts much better
    2022-05-18 01:14:35下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载