资源列表
renzhe---tanchishe
- 贪吃蛇游戏源代码,用vc编写的,里面含有主要算法,以及界面。可以下载后自己修改-Snake game source code, with vc prepared, which contains the main algorithm, as well as the interface. Change can be downloaded
zhucebiao
- 里面含有xp系统注册表的基本操作以及基本知识,对注册表感兴趣的可以下载来学习一下-Xp system registry which contains the basic operation and basic knowledge of the registry can be downloaded interested to learn about
renyuanguanlixitong
- 有vc写的人员管理系统,对于初学c++的人来说,是很好的学习参考资料。也可以做为课程设计-There vc written personnel management system, for the beginner c++ The people, is a very good learning reference. Can also be employed as the curriculum design
tushuguanguanlixitong
- 用vc编写的图书馆管理系统,可以实现键盘输入,显示器输出。对于初学c++的人来说,是很好的参考资料,也可以作为课程设计-Vc prepared to use the library management system that can achieve the keyboard input, display output. For beginner c++ The people, is a good reference, but also can serve as a curriculum des
jisuanji
- 计算器,运用数组和结构体,基本图形函数是想计算功能-Calculator, using the array and the structure, basic graphics function is like computing power
asp--dengluzhucexitong
- 用asp编写的登陆注册系统,对于学习asp的朋友,是很好的参考资料-Asp landing with the preparation of the registration system, for learning asp friends, is a good reference
Tower
- 一个用标准C编写的汉诺塔可视控制台程序,实现了制定层数的汉诺塔移动,并实现了可视化,可生成EXE程序独立于VC++环境独立运行.-A standard C Hanoi prepared visual console procedures, to achieve the development of mobile-rise Tower of Hanoi, and the realization of visualization can be generated EXE program indepe
nasm_man
- NASM是一个为可移植性与模块化而设计的一个80x86的汇编器。它支持相当多 的目标文件格式,包括Linux和 NetBSD/FreeBSD , a.out , ELF , COFF ,微软16 位的 OBJ 和 Win32 。它还可以输出纯二进制文件。它的语法设计得相当的简 洁易懂,和Intel语法相似但更简单。-NASM is a portable and modular design of a 80x86 assembler. It supports the goal
docking_zyb
- 自己编写的三角网算法。对离散点的三角网的生成,并对传统Delaunay三角网的改进的程序,速度还可以。大家交流一下。-I have written triangulation algorithm. Discrete points on the triangular net generation, the traditional Delaunay triangulation to improve the procedures, speed can also be. Members exchange
zyb1_delaunay
- 自己编写的三角网算法。对离散点的三角网的生成,并对传统Delaunay三角网的改进的程序,速度还可以。大家交流一下。-I have written triangulation algorithm. Discrete points on the triangular net generation, the traditional Delaunay triangulation to improve the procedures, speed can also be. Members exchange
compare
- 这是一个简单的程序,但很有代表性,可以帮助初学者较快的入门。输入三个数,比较大小。文件中附有 详细说明-This is a simple procedure, but very representative can help beginners and entry faster. Enter the three numbers compare size. Document with detailed descr iption of
shunxu
- //顺序表的建立、查找、插入与删除 #include <stdio.h> #include <malloc.h> #include <stdlib.h> #define ListSize 100 //表最大长度 //结构定义 typedef struct SeqList { int node[ListSize] //存放表结点 int length //当前表长度 } SeqList //插入元素