搜索资源列表
TESTINT
- 一个C#的计算程序,供一些初学者学习,不过本人才疏学浅,还希望大家支持一下-a calculation program for some beginners learning, but I have little talent and less learning, but also hope that we support what
six
- 一些初学者可以看的程序,本人因才疏学浅,刚学C#,对C#还不了解,不过有一定的C基础,-beginners can see some of the procedures, because I have little talent and less learning, just learning C#, the C# do not really understand, However, there is some basis of C,
yunsuanfuchongzai
- 大于小于等于 操作符重载 对于日期的使用-less than equal to operator overloading date for the use of
Source
- 一个自己写的Hadoop MapReduce实例源码,网上看到不少网友在学习MapReduce编程,但是除了wordcount范例外实例比较少,故上传自己的一个。包含完整实例源码,编译配置文件,测试数据,可执行jar文件,执行脚本及操作步骤。学习完此例子后,你能掌握MapReduce基础编程,及如何编译Java文件,打包jar文件,编写shell执行脚本等。后续学习还可以参看本人的CSDN博客,如有问题也可以在线为你解答,不过本人也学习Hadoop不足一年,现学现卖而已,也可能力不能及,有些难的
1
- 工程师和科学家们面临着用更少的时间建立杂系统模型的需求,他们使用分布式和并行计算来解决高性能计算的问题。这些分布式环境由多处理器和多核计算机来实现。-Engineers and scientists are facing less time to establish the needs of complex systems model, they use distributed and parallel computing to solve the problem of high-perform
julei
- 遗传算法解决聚类问题。.边的权重与时间关系为:1-(用户最近标注时间-该边被标注时间)*0.01,时间间隔以月计,相差一个月权重相差0.01,最近标注的权重为1 2.边的权重通过端点的出度调整 3.若用户没有共现标签,则以其权重最大的部分标签自连接构造标签对 4.若用户标签对少于预设大小,则将其拥有的标签对重复多次,直到数量与预设大小相等-Clustering genetic algorithm to solve the problem. . While the w
1000!
- 计算1000以内的阶乘,可能可以更大的,算了就知道-Calculation of less than 1000 factorial
sushu1
- 实现功能:输入一个100以内的数,计算输出该数内的素数-Functions: less than a 100 number, and calculate the output in the number of primes
grover_min
- 用GROVER搜无序数据库中的任一个数,把该数找出来,即找出该数在数据库中的下标。由于量子并行性计算的特点,精度高,迭代步数少-GROVER search disorderly database in any of a number, the number to find out, that is, to find out the subscr ipt of the number in the database. Due to the characteristics of quantum par
Openmpcode_examples
- 里面包含了几个openMP的共享存储式C程序代码,希望对你们有帮助,现在能参考的大型程序的openMP的代码比较少-Which contains several openMP shared storage type C code, you want to help, and now can reference the code in large programs openMP less
java
- //需求分析:写一个成绩管理系统。其中的一个功能是实现成绩录入。要求能根据课程名称在系统里找到学生和课程信息;在结果区域中添加成绩。 //规则:要求对输入成绩的操作要有有效性检验。成绩只接受大于0且小于100的数字;同一记录不能反复提交;当点击“提交”,告知用户操作是否成功,并给出相应信息;课程名下拉列表中的课程列表根据数据库中的课程表,自动生成。-//Demand analysis: write a performance management system. One of thes
N!
- 利用数组计算一万以内的阶乘。当你需要计算大数时非常有用。-The use of an array to calculate the factorial of less than ten thousand. Very useful when you need to calculate large numbers.
折半查找法
- 折半查找法是效率较高的一种查找方法。假设有已经按照从小到大的顺序排列好的五个整数a0~a4,要查找的数是X,其基本思想是: 设查找数据的范围下限为l=1,上限为h=5,求中点m=(l+h)/2,用X与中点元素am比较,若X等于am,即找到,停止查找;否则,若X大于am,替换下限l=m+1,到下半段继续查找;若X小于am,换上限h=m-1,到上半段继续查找;如此重复前面的过程直到找到或者l>h为止。如果l>h,说明没有此数,打印找不到信息,程序结束。(The method of bin