搜索资源列表
c++studentmaneger
- c++链表学籍管理系统, 适合作为期末作业哈-c Chain Maintenance Management System for the end of operations as Kazakhstan.
使用动态链表完成一个简单的商品库存信息管理系统。
- create:接收用户输入的商品号和商品名称的信息,建立链表;库存初始化为0,没有进货之前不允许销售;商品号为0表示用户输入结束。本函数用于初始化,如果第二次被调用的时候,首先要执行destroy清除旧链表。 destroy:给定链表的头指针,删除链表的所有节点,并释放相应的空间。本函数在程序退出前应至少被调用一次。在调用此函数前,必须给予用户提示,使用户在删除前有反悔的机会。 sell:商品销售,由参数传入商品号和销售数量。如果不存在给定商品号的商品或销售数量大于相应商品的库存则出错;否则
C语言难点分析整理!
- 这篇文章主要是介绍一些在复习C语言的过程中笔者个人认为比较重点的地方,较好的掌握这些重点会使对C的运用更加得心应手。此外会包括一些细节、易错的地方。涉及的主要内容包括:变量的作用域和存储类别、函数、数组、字符串、指针、文件、链表等。一些最基本的概念在此就不多释了,仅希望能有只言片语给同是C语言初学者的学习和上机过程提供一点点的帮助。
c++
- 在线性表的实现中增加一个成员函数,实现对表中元素置逆的操作(设原链表为a1,a2,...,an 则置逆后的序列为an,...,a2,a1)。对于具有n个元素的线性表,你的算法的运行时间应为O(n),空间消耗应为O(1). 注:有对时间和空间分析的说明
c
- 1微型打印机的C语言源程序 2连接两个链表 3输入n为偶数时,调用函数求1/2+1/4+...+1/n,当输入n为奇数时,调用函数 1/1+1/3+...+1/n(利用指针函数) 4时间函数举例4,一个猜数游戏,判断一个人反应快慢。 5家庭财务管理小程序 -1 micro-printer 2 of the C language source list 3 to connect the two input n is an even number, the cal
Studemt
- 采用C语言开发,文件存储,指针链表实现,每个用户凭合法用户名和密码登陆,不同权限的用户可使用不同的功能集。用户管理包括:新增、查找,浏览、修改密码和和保存等基本功能。学生成绩管理包括添加、修改、删除、查询、排序、统计、载入、追加和保存等基本功能。-Using C language development, file storage, a pointer linked list implementation, each user with valid username and password,
C
- 《程序设计基础》课 程 设 计:包括实验报告和源代码 题目一: 使用菜单选择程序 题目二: 用结构数组设计职工文件 题目四: 链表信息管理 -" Program Design" Course Design: including lab reports and source code subject 1: Use the menu to select the program title 2: The structure of the array design fi
c
- 最容易想到的方法遍历一遍链表,利用一个辅助指针,存储遍历过程中当前指针指向的下一个元素,然后将当前节点元素的指针反转后,利用已经存储的指针往后面继续遍历。源代码如下:-The easiest way to think of traversing the list again, using an auxiliary pointer, store the current pointer to traverse the course of the next element, and then reve
Data-structure-(C-language-version)
- 详细介绍数据结构相关知识点,包括链表、树、图等,是C语言版本。-Detailed data structure knowledge points, including linked lists, trees, graphs, etc., is a C-language version.
Menu-window-using-C-language-
- 双向链表制作的通讯录源程序, 有交互性 有完整注释 有一定难度-Doubly linked list making contacts source, interactive complete notes there is a certain degree of difficulty
maze-c
- 首先实现一个以链表作存储结构的栈类型,然后编写一个求解迷宫的非递归程序;求得的通路以三元组的形式输出-failed to translate
the-list-for-C
- 链表教学,详细介绍各种关于链表的问题,像增删查改,深度介绍链表的内部结构。-The teaching of the list, details on the list of issues, like CRUD, depth descr iption of the internal structure of the linked list.
C-Language-Programming
- 用指针处理链表,并且配有详细的中文叙述解释,-With pointer processing chain, and with a detailed descr iption of the Chinese interpretation,
a.c
- 输入一个包含三个数据的链表,并输出其的反向链接。如输入为abc,输出为cba.-Contains a list of three input data, and outputs the reverse link. If the input is abc, the output is cba.
C
- 链表的c语言实现方式 原来使用单片机编程的时候,对链表使用的不多,现在转学嵌入式,发现链表,指针就是嵌入式的基础,从网上看到一篇学习链表的例子,感觉挺好的,转载过来一起分享。 建立一个学生成绩的线性链表,对其实现插入,删除,输出,最后销毁。-List of c language implementations original use microcontroller programming, not much use for the list, now embedded trans
Shujujiegou-C
- 数据结构C语言版,章节PPT,绪论、栈与队列、线性链表、树和二叉树-Data structure C language edition, chapter PPT, introduction, stacks and queues, linear lists, trees and binary trees
linked-list
- C++链表的创建与操作,其中包含部分重要代码过程。 -Creation and operation of linked list
C语言课程设计实例精编
- C 语言由于具有灵活 高效 可移植性好等诸多优点 成为软件开发中常用的计 算机编程语言之一 全书介绍了贪吃蛇游戏 计算器 黑白棋游戏 迷宫问题 扫地 雷游戏 速算 24 数据结构 CAI 演示 进程调度 存储管理等十四个案例 各个案例 独具特色 覆盖了 C 语言的基本知识点和各种数据结构 如堆栈 队列 链表等 综 合应用了光带菜单 下拉菜单 图形设计 鼠标应用等知识 本书应用性极强 读者 可以根据这些案例进行研究 修改和扩展(C language has many advantages
链表
- 数据结构链表,包括线性表的基础编程,适用于C语言。(Data structure chain table)
链表
- for easy learning about link in c/c++