搜索资源列表
j_13011_syl
- 简介:C编写,实现字符串摘要、文件摘要两个功能。 里面主要包含3个文件: Md5.cpp、Md5.h、Main.cpp。其中Md5.cpp是算法的代码,里的代码大多是从 rfc-1321 里copy过来的;Main.cpp是主程序。 -Profile: C prepared, the realization of string summary document containing a summary of two functions. Which mainly includes th
Md5Code
- C编写,实现字符串摘要、文件摘要两个功能。 里面主要包含3个文件: Md5.cpp、Md5.h、Main.cpp。其中Md5.cpp是算法的代码,里的代码大多是从 rfc-1321 里copy过来的;Main.cpp是主程序。 -C to prepare and achieve string summary document containing a summary of two functions. Which mainly contains three documents: Md5
Md5Code
- C编写,实现字符串摘要、文件摘要两个功能。 里面主要包含3个文件: Md5.cpp、Md5.h、Main.cpp。其中Md5.cpp是算法的代码,里的代码大多是从 rfc-1321 里copy过来的;Main.cpp是主程序。-C to prepare, to achieve string summary document containing a summary of the two functions. 3 inside the main document contains: Md5.c
bst.cpp.tar
- this a binary search tree implementation including insert, find, delete etc. functions.-this is a binary search tree implementation including insert, find, delete etc. functions.
CPP-systemEmpolyee-
- C++ 控制台实现的员工管理系统,包括添加职工、删除职工、查找职工等功能-C++ console, staff management system, including adding staff, remove employees, to find workers and other functions
CPP
- 学生管理系统,用C++编写的,实现了添加删除查找排序等功能-Student management system, written in C++, add remove find the sort functions
CPP
- 个人理财管理系统1)信息维护:个人资金的收入与支出管理。此模块包括子模块有:资金收入信息、资金支出信息 (2)信息查询:查询时可实现按日期进行支出、收入情况查询 (3)统计功能:输入一个日期或月份,统计出所有当天或当月的资金收入与支出情况并显示数据。 -Personal Financial Management System) maintenance of information: personal income and expenditure of funds management. This
CPP
- 栈和队列的实现源码,有各种基本功能,stduio2010可运行。-Stack and queue implementation source code, there are a variety of basic functions, stduio2010 can run.
cPP
- 用内联函数编写Fibonacci级数,使用if语句判断函数的出口,在程序中用cout语句输出提示信息 设计一个函数,形参是引用类型,要求输入三个整数(cin输入,cout提示输入),按从小到大排序后输出,编程完整的程序并测试。-Write Fibonacci series using inline functions, using the if statement to determine the function of export, prompt information to desig
CB6_RCL(Standard-CPP-Library-Help)
- 朋友们在用C或C++编程的时候,经常要查询C++知识,这时,如果有个小巧快捷的电子帮助工具能够查询一下,会方便得多。这是从C++ Builder 6中整理出来的帮助文件,把它解开在磁盘上,只要轻轻双击一下bcb6scl.hlp文件,就可以阅读“目录”,或者从“索引”中瞬间找到所需函数说明。 -The friends with C or C++ of programming, often query C++ knowledge At this time, if there is a small
CPP-to-solidworks-development-
- 用VC++对solidworks进行二次开发,包括添加菜单实现solidworks上各种功能,从零件图、装配图到工程图均具备。-The solidworks secondary development VC++ of, add menu solidworks on a variety of functions, from parts and assembly drawings to drawings possess.
cPP
- 基于VC++的51单片机处理器仿真,用C++语言仿真出51处理器寄存器的指令功能-Based on 51 single-chip processor VC++ simulation, simulation of the 51 languages with C++ processor registers command functions
cPP-application
- 运算符重载,c++类的简单应用,虚函数的实现,复数的计算,二叉树的创建及遍历及线性表及其操作的实现-Operator overloading, c++ simple application class, virtual functions, complex calculations, binary tree traversal and the creation and implementation of the linear form and its operation
CPP-question-bank
- 试题库的管理与维护是生成试卷系统必备的重要功能模块,主要负责对C++选择题题库的浏览、增加、修改、删除、生成试卷等功能。提供对文件存储的C++选择题进行浏览、增加、修改、删除题目、由题库生成试卷等功能。-Management and maintenance of test database is an important function module to generate the necessary papers system is mainly responsible for C++ mu
h.cpp
- 建立一个简单的银行账户系统。关于账户的信息有:户名、账号、余额。对账户的管理有:开户、存款、取款、查询余额等功能。用结构化程序设计方法设计一个程序,使该程序能对银行账户的信息进行上述操作管理。-Create a simple bank account system. Information about the account are: user name, account number, balance. Management of the account are: accounts, depo
matrix
- 矩阵类模板Matrix<Type>是专门为线性代数中矩阵而设计的一个模板类,具体的函数声明与定义可以参见“matrix.h。见测试文件 matrix_test.cpp,功能如下: Matrix<Type> m 创建一个空矩阵 Matrix<Type> m2(m1) 创建矩阵 m2的拷贝 m1 Matrix<Type> m(r,c,x) 创建常数矩阵 Matrix<Type> m(r,c,a) 通过数组创建矩阵
Data-Structure-and-algorithms-CPP
- c++实现数据结构的所有代码。包括线性表,树,图,排序,hash等。线性表实现堆栈,队列及约瑟夫环等多个应用,树实现哈夫曼树编码及译码,AVL树,线索化二叉树,森林和二叉树的相互转化等等,图实现图的几种建立方法,拓扑排序,最短路径,最大连通子图,双连通分量,最小生成树,关键路径算法等等,排序实现归并排序,快速排序,堆排序,shell排序,冒泡排序,选择排序,插入排序等,并对性能进行分析。hash实现闭散列表,开散列表,带溢出表的内散列表等,并使用5种hash函数。帮助同学们系统的学习数据结构及算
AES--cPP
- 这是一个AES加解密的程序,DOS界面,能实现加解密功能。-This is an AES encryption and decryption procedures, DOS interface, to achieve encryption and decryption functions.
QQ(CPP)
- 模拟QQ 注册 登录 群管理等基本功能的模拟,仅供学习。本人实验课设计-Sign analog simulation QQ group management and other basic functions, only to learn. Experiment Course Design
cpp_functions_of_the_gptoolbox
- cpp functions of gp tool box