联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 其他小程序(28) 

[其他小程序] L5-E5

利用函数和递归做一个数列的加减运算,数列的加减运算有一定的规律,可利用函数与计算出结果
The constant  can be calculated by the infinite series:  = 4- 4/3+ 4/5- 4/7+ 4/9- 4/11+.... Write a C program that uses a do/while loop to calculate  using the series. The program should ask the user how many terms in the series should be used. Thus if the user enters ‘3’, then the program should calculate  as being 4- 4/3+ 4/5. (2012-05-16, C/C++, 5KB, 下载5次)

http://www.pudn.com/Download/item/id/1872590.html

[其他小程序] Devc

、一元多项式的加法、减法、乘法的实现 【问题描述】 设有一元多项式Am(x)和Bn(x),   Am(x)=A0+A1x1+A2x2+A3x3+… +Amxm   Bn(x)=B0+B1x1+B2x2+B3x3+… +Bnxn   请实现求M(x)= Am(x)+Bn(x)、M(x)= Am(x)-Bn(x)和M(x)= Am(x)×Bn(x)。 【基本要求】 首先判定多项式是否稀疏; 分别采用顺序和动态存储结构实现; 结果M(x)中无重复阶项和无零系数项; 要求输出结果的升幂和降幂两种排列情况 【进一步完成内容】 界面设计的优化。
, A polynomial of addition, subtraction, multiplication problems to achieve 【Description】 There is a polynomial Am (x) and Bn (x), Am (x) = A0+ A1x1+ A2x2+ A3x3+ ...+ Amxm Bn ( x) = B0+ B1x1+ B2x2+ B3x3+ ...+ Bnxn please realize find M (x) = Am (x)+ Bn (x), M (x) = Am (x)-Bn (x) and M (x) = Am (x) × Bn (x). First determine the basic requirements of】 【polynomial is sparse were used to achieve sequential and dynamic storage structure result M (x) in the non-repeat-order items and non-zero coefficient term required output of both ascending and descending order situation 【Content】 interface complete further design optimization. (2010-12-27, C/C++, 121KB, 下载5次)

http://www.pudn.com/Download/item/id/1393794.html

[其他小程序] Pi_LDPC_Decode

在C语言下,采用动态生成的方法,利用BF硬译码,来对 LDPC译码的程序。
In the C language, using dynamically generated methods, the use of BF decoding hardware to the procedure of LDPC decoding. (2010-11-02, C/C++, 4KB, 下载26次)

http://www.pudn.com/Download/item/id/1333449.html

[其他小程序] baidu

百度论坛自动发帖软件。能自动发帖到百度论坛,需要手动输入验证码。发帖地址为: http://tieba.baidu.com/f?kw= CF E6 B8 D6
Baidu forum posting software automatically. Automatically posted to the Baidu forum, need to manually enter the verification code. Posting address: http://tieba.baidu.com/f?kw = CF E6 B8 D6 (2010-08-03, Visual C++, 13KB, 下载55次)

http://www.pudn.com/Download/item/id/1258291.html

[其他小程序] OtherTest

实现ASC字符转16进制字符,示例 a (ASC码97)转换为0x61
Achieve the ASC switch to 16 hexadecimal characters in character, sample ' a' (ASC Code 97) is converted to 0x61 (2010-03-22, C/C++, 162KB, 下载56次)

http://www.pudn.com/Download/item/id/1096103.html

[其他小程序] 4140521

分析Unix最先适应(first fit,ff)存储分配算法。即map数据结构、存储分配函数ma lloc()和存储释放函数mfree(),找出与算法有关的成分。修改上述算法有关成分,使其分别体现BF(best fit,最佳适应)分配原则WF(worst fit,最坏适应)分配原则。
Analysis of Unix was first to adapt to (first fit, ff) memory allocation algorithm. The map data structure, storage allocation function ma lloc () and memory release function mfree (), and algorithms to identify the elements. Modify the above algorithm as the ingredients, so that, respectively, embody BF (best fit, best fit) the principle of distribution WF (worst fit, the worst adaptation) distribution. (2010-01-09, C/C++, 1KB, 下载19次)

http://www.pudn.com/Download/item/id/1034482.html

[其他小程序] VirtuaNESv0.97cn

一个C++编写的著名的FC模拟器,经过我简单修正日文成中文,并将mac文件换行格式乱码,可以在Microsoft Visual Studio 2008中运行,在VC++6.0中会编译不成功,这是因为作者编写环境高于vc6.0的缘故,请注意。希望能给大家带来方便。
C++ written in a well-known FC simulator, after I have a simple amendment Japanese into Chinese, and mac file format, wrapping garbled, you can run Microsoft Visual Studio 2008, in the VC++6.0 will be compiled in the unsuccessful, it is because the author the preparation of the environment is higher than vc6.0' s sake, please note. Want to give you convenience. (2010-01-08, Visual C++, 562KB, 下载14次)

http://www.pudn.com/Download/item/id/1033184.html

[其他小程序] s4

4. 实现下面的数组元素交换位置函数: void swap(int a[], int m, int n) 该函数能够把数组a的前m个元素与后n个元素交换位置,即, 交换前:a1,a2,...,aM, aM+1,aM+2,...,aM+N 交换后:aM+1,aM+2,...,aM+N, a1,a2,...,aM 要求:除数组a外,不得引入其它数组。
4. To achieve the following elements of the exchange position of the array function: void swap (int a [], int m, int n) the function is able to array a the first m elements with n elements after the exchange of position, that is, the exchange of the former: a1, a2 ,..., aM, aM+1, aM+2 ,..., aM+ N, after the exchange: aM+1, aM+2 ,..., aM+ N, a1, a2, .. ., aM requirements: In addition to an array of a, shall not introduce other array. (2010-01-06, Visual C++, 843KB, 下载16次)

http://www.pudn.com/Download/item/id/1030551.html

[其他小程序] A0_001

N只猴子要选大王,所有猴子按1,2,3...M报数,凡报到M的退出圈外,如此循环,直到圈内只剩一只,就是大王了. 分析:建立一个环形链表,每个猴子就是链表中的一个结点,那么猴子出圈就是对环形链表中的结点的删除,只到最后剩下的一个结点为止.
N monkeys to elect king, all the monkeys reported by a number 1,2,3 ... M, where M to report the withdrawal of outsiders, and so on, until only one circle is the king of. Analysis: the establishment of a ring linked list, each monkey is a list of a node, then the monkey out of the circle is a right circular list node removal, only to the last remaining until a node. (2009-11-08, Pascal, 1KB, 下载5次)

http://www.pudn.com/Download/item/id/963300.html

[其他小程序] ArrayLlist

分别用顺序表和单链表作为存储结构,完成:(1)实现线性表(a0, a1, a2, a3, …,an-1)就地逆置的操作。(2)实现将x插入一个递增有序表L中,并使L仍是一个有序表。(3)实现统计在一个输入字符串中各个不同字符出现的频度。
Were used to sequence the table and a single list as the storage structure, completed: (1) to achieve a linear form (a0, a1, a2, a3, ..., an-1) in situ reverse set operation. (2) to achieve an x into a list L in increasing order and make an ordered list L remains. (3) The realization of statistics in an input string of different characters in the frequency of emergence. (2009-10-21, Visual C++, 3169KB, 下载8次)

http://www.pudn.com/Download/item/id/944946.html

[其他小程序] A1_Alarm

This is the VB6 code for Alarmsystem, must see.
This is the VB6 code for Alarmsystem, must see. (2009-09-14, Visual Basic, 13KB, 下载5次)

http://www.pudn.com/Download/item/id/910494.html

[其他小程序] PExcel97-2007BinaryFileFormat(xls)Specification

Binary format excel 97
Binary format excel 97 (2009-08-06, Windows_Unix, 3306KB, 下载5次)

http://www.pudn.com/Download/item/id/869340.html

[其他小程序] Blowfish

BlowFish算法用来加密64Bit长度的字符串。 BlowFish算法使用两个“盒”——ungigned long pbox[18]和unsigned long sbox[4,256]。 BlowFish算法中,有一个核心加密函数:BF_En(后文详细介绍)。该函数输入64位信息,运算后
BlowFish算法用来加密64Bit长度的字符串。 BlowFish算法使用两个“盒”——ungigned long pbox[18]和unsigned long sbox[4,256]。 BlowFish算法中,有一个核心加密函数:BF_En(后文详细介绍)。该函数输入64位信息,运算后 (2009-06-26, Windows_Unix, 10KB, 下载6次)

http://www.pudn.com/Download/item/id/822264.html

[其他小程序] coreutils-7.4.tar

Coreutils for ubuntu 9.04 - tune ls colorized
Coreutils for ubuntu 9.04- tune ls colorized (2009-06-22, Unix_Linux, 9481KB, 下载6次)

http://www.pudn.com/Download/item/id/816190.html

[其他小程序] OPRemovba_chs

超强的文件破解工具,用于Word/Excel文件破解,适用版本Office 97/2000/XP/2003.
This tools is for office97/2000/2003. (2009-03-17, Visual C++, 369KB, 下载37次)

http://www.pudn.com/Download/item/id/676128.html

[其他小程序] a1

飞机航班系统,有查找、修改、管理员功能和用户功能。
Flights systematic search, modify, administrator features and user features. (2008-12-24, Visual C++, 538KB, 下载5次)

http://www.pudn.com/Download/item/id/614395.html

[其他小程序] a1

给出一个合数,通过此程序可以实现对这个因数的分解,得到这个合数的因数。
Give a composite number, can be achieved through this process of decomposition of this factor, the factor of the composite number. (2008-09-28, Visual C++, 206KB, 下载7次)

http://www.pudn.com/Download/item/id/553619.html

[其他小程序] calendric

日历的编排是每400年一个大循环周期,即今年的月、日、星期几和400年前的完全一样。现行天文历法根据天体运行规律,取每年365.2425天。这样,每400年共有365.2425×400=146097天。如果以365天作为一年,每400年就少了0.2425×400=97天。这97天要靠设置闰年(每年366)天来凑齐,所以,每400年要设置97个闰年。 编程思路:按照以上背景知识可得判断闰年的规律:某年年份如果能被4整除但不能被100整除,或者能被400整除则是闰年。由此规则可推得计算万年历的公式: s=X-1+(X-1)/4-(X-1)/100+(x-1)/400+c 上式中:X为公元年数(如2003年);C 为从元旦起,到要算的那天总数(如2003年3月23日,C=31+28+23=82)。S/7余数是星期几。 (2008-05-30, Visual C++, 1KB, 下载5次)

http://www.pudn.com/Download/item/id/477448.html

[其他小程序] cfdc

a1 * a2 * a3 = 2450 And (a1 + a2 + a3) * 2 < 120
a1* a2* a3 = 2450 And (a1+ a2+ a3)* 2 < 120 (2007-11-17, Visual Basic, 2KB, 下载31次)

http://www.pudn.com/Download/item/id/362130.html

[其他小程序] AverTEP5

Average T5 e5 P5 AverTEP
Average T5 e5 P5 AverTEP (2007-04-13, Visual Basic, 29KB, 下载5次)

http://www.pudn.com/Download/item/id/267633.html
12
总计:28