搜索资源列表
DT
- This software is a helper to learn format conversion between CTime formatted date-time and time_t long integer. time_t use number of seconds elapsed since midnight (00:00:00), January 1, 1970.
management
- 一个处理集合的类,用来处理整型数,具有大学师生信息管理功能功能。-A collection of classes dealing with, to handle integer, a university student information management capabilities.
miracl_5.5.4
- MIRACL(Multiprecision Integer and RationalArithmetic C/c++ Library)是一套由Shamus Software Ltd.所开发的一套关于大数运算函数库,用来设计与大数运算相关的密码学之应用-MIRACL (Multiprecision Integer and RationalArithmetic C/c++ Library) is set by Shamus Software Ltd. developed a set of libra
msort_mix_ptr
- this a code to discribe the merge sort . i use pointers to read the integer data and floating data and then sort them-this is a code to discribe the merge sort . i use pointers to read the integer data and floating data and then sort them
ZSFJ
- 题目:将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5。 程序分析:对n进行分解质因数,应先找到一个最小的质数k,然后按下述步骤完成: (1)如果这个质数恰等于n,则说明分解质因数的过程已经结束,打印出即可。 (2)如果n<>k,但n能被k整除,则应打印出k的值,并用n除以k的商,作为新的正整数你n,重复执行第一步。 (3)如果n不能被k整除,则用k+1作为k的值,重复执行第一步。 -Subject: a positive integer fac