搜索资源列表
200410610511675180
- XMathLib是一个通用的3D图形数学库。 其中包含两个部分: XMathLib和XGeomLib。分别处理数学和几何运算。 数学部分包含向量、矩阵、四元数的运算。以及其它的运算。 几何部分包含Box Frustum AABB OBB Ray Line Line-Segment Plan Triangle等的运算。-XMathLib is a generic 3D graphics math. Which consists of two parts : XMathLib and
ram_database
- 内存数据库,或者可以称作通用数据结构。使用数组,链表实现了内存数据库的框架,包含域,记录。基本上可以管理各种程序所需要的数据结构。-memory database, or can be called generic data structure. Use arrays, linked list of memory to achieve the framework of the database, including domain record. Basically management proc
d2hz
- 数字串转中文大写的小代码段,这个段子使用堆栈算法,可以通用(从内部二进制数转中文大写或数字串转中文大写) -figures Series switch over to the Chinese capital of the small code, the use of pieces from the stack algorithm, be generic (internal binary switch over to the Chinese capital, or digital serial
base
- 基本数据结构类的定义和实现: MyStack ,MyPoint,MyArc,Graph,MyQueuesMyStack为构造的一个通用的C++模版堆栈类 MyPoint为一个坐标结构MyArc为带权的边类Graph为临街矩阵表示的图MyQueues为按权值顺序存储的边的队列-basic data structure class definition and realization : MyStack, MyPoint, MyArc, Graph, MyQueuesMyStack for a ge
vectoralist
- 练习vector和list的使用 定义一个空的vector,元素类型int,生成10个随机数插入到vector中,用迭代器遍历vector并输出其中的元素值。在vector头部插入一个随机数,用迭代器遍历vector并输出其中的元素值。用泛型算法find查找某个随机数,如果找到便输出,否则将此数插入vector尾部。用泛型算法sort将vector排序,用迭代器遍历vector并输出其中的元素值。将vector清空。 定义一个list,并重复上述实验,并注意观察结果。 -Exerc
GA
- GA算法 一个通用的GA算法 求y=s*sin(1/x)的最小值-GA algorithm for a generic GA algorithm for y = s* sin (1/x) the minimum
linklist
- 涵盖了常用的线性链表操作,符合c99标准-Generic link sequence list opterations.
BinaryTree
- BinaryTree算法,这个代码很通用,使用了模版,值得学习-BinaryTree algorithm, this code is very generic, using templates, it is worth learning
1
- 已知按值递增有序排练的两个线性表A和B,且每个线性表内部各元素互不相同。试构造线性表C,使其是A和B的交集,且其中的数字同样按值递增排列。 要求: 1)分别采用顺序表、单链表、双链表三种数据结构存储上述线性表A、B、C 2)编写一个通用的程序(无论线性表A、B和C采用顺序表、单链表还是双链表存储,该程序完全通用),实现对线性表C的构造-Known to increase the value ordered by the two linear tables A rehearsal an
SmartCacul
- 自己上大学时开发的有声科学计算器。 使用一个泛型二叉树深度优先进行表达式解析。 界面支持编辑表达式,声音是自己录的,不要害怕(-:< -The development of their own college, sound scientific calculator. Using a generic binary tree for the expression analysis. Interface supports editing expressions, his voice
glink
- 自己实现的通用链表,用法及测试用例见注释,希望对你有帮助-Own implementation of generic list, usage, and test cases see Note, I hope to help you
Generic-function
- 泛型函数: 总结:使用标准模板库 (STL) C++标准库提供了更为安全,更为灵活的数据集处理方式。 STL的最主要的两个特点:数据结构和算法的分离,非面向对象本质。 访问对象是通过象指针一样的迭代器实现的;容器是象链表,矢量之类的数据结构,并按模板方式提供; 算法是函数模板,用于操作容器中的数据。由于STL以模板为基础,所以能用于任何数据类型和结构。-Generic function: Summary: Using the Standard Template Library
mylist
- 纯C语言实现的通用链表(类)源代码,希望对大家有所帮助-Plain language of the generic linked list C (category) source code, we hope to help
handout-files
- 实施第一类你必须使用一个链表来实现这些队列的方法,并队列增长到任何需要的大小。你执行第二类必须使用数组来实现这个队列类。该数组的大小应该是10,永远不会改变。 要实现第一个队列,你可以使用通用的节点类。第二个队列,必须使用一个固定大小的数组来实现。 您还必须建立一个主要的方法,使用户可以进入队列的字符串,获取和打印队列的头部(输入命令“poll”)的字符串,插入一个空值(命令“null ”),或退出程序(命令“quit”)。由用户输入的任何其他字符串应插入到队列中,通过调用该要约方法
btree
- 标准C++的B树实现,使用类和模板,具有通用和代表性。-A c++ implementation OF b tree, which is generic and representative.
MyHashMap
- 因工作原因,需要实现数据的快速查找与维护,因为是用C语言实现,所以写了一个通用的算法,实现了与数据结构无关。当时这一部分用在了一个实时交通信息上。 -Due to work, quickly find the data needed to achieve and maintain, because it is written in C language, so write a generic algorithm, has nothing to do with the data structu
hrms_1.0.0.0
- 使用C语言实现的简单的人事管理系统,使用了linux内核的通用链表-Simple personnel management system, using the C language using the Linux kernel generic linked list
VCPPinsort
- 1. 采用插入排序的方法,输入10个整数按升序排序后输出。要求编写一个通用的插入排序函数InsertSort()。它带有三个参数,第一个参数是含有n个元素的数组,这n个元素已按升序排序;第二个参数给出当前数组中元素的个数;第三个参数是要插入的整数。该函数的功能是将一个整数插入到数组中,然后进行排序。另外还需要一个用于输出数组元素的函数Print(),要求每一行输出5个元素。-A. Insertion sort, the output of input 10 integers sorted in
kruskal
- kruskal的一个通用算法的例程,非常有利于最短路径相关的学习-kruskal the routine of a generic algorithm, is very conducive to the learning of the shortest path
A-Generic-bubble-sort
- It is the source code of the A Generic bubble sort in C++. which is a data structure.-It is the source code of the A Generic bubble sort in C++. which is a data structure.