-
循环计算练习
空间循环编程实验题目的对应编程结果。包括一下12个题目:
(1) 1+2+3+4+5……+n (独立完成)
(2) 1 - 1/2 + 1/3 - 1/4 + 1/5 - 1/6 …… 1/n 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-08-20 13:08:21下载
- 积分:1
-
data encryptiption standart
数据加密标准;
- 2022-06-02 04:41:28下载
- 积分:1
-
遗传算法解决微电网运行优化
微电网是比较热门的话题,针对微电网越来越多的使用,人们开始探寻其最优经济控制,既要保证达到经济要求,也要能保证能在一定程度上实现排放污染气体量最小。
- 2022-09-30 07:55:03下载
- 积分:1
-
数字图像处理,图像分割,阈值分割
这是数字图像处理过程中重要的基础算法,隶属图像分割,它通过设置阈值来区分图像中的各个不同物体,算法简单易懂,适合初学图像处理者。
- 2022-03-04 06:08:16下载
- 积分:1
-
构建哈夫曼树,并对给定的字母进行编码,还能将数字密码解码成字符串...
构建哈夫曼树,并对给定的字母进行编码,还能将数字密码解码成字符串-Construction Huffman tree, as well as letters to the code, but also to decode the password string
- 2022-02-25 23:19:43下载
- 积分:1
-
Fifty Years of Shannon Theory
应用背景
Fifty Years of Shannon Theory:
A brief chronicle is given of the historical development
of the central problems in the theory of fundamental limits
of data compression and reliable communication.
关键技术Shannon’s A mathematical theory of communication”published in July and October of 1948 is
the Magna Carta of the information age. Shannon’s discoveryof the fundamental laws of data compression and transmission marks the birth of Information Theory. A unifying theory with profound intersections with Probability, Statistics, Computer Science, and other fields, Information Theory continues to set the stage for the development of communications, data storage
and processing, and other information technologies.
- 2022-02-13 17:00:08下载
- 积分:1
-
一、前言
24点游戏是一个常见游戏,出题者给出4个整数,要求答题者在指定时间内给出一个四则运算的表达式,恰好用上这这个整数各一次,计算结果为24,超出时间为...
一、前言
24点游戏是一个常见游戏,出题者给出4个整数,要求答题者在指定时间内给出一个四则运算的表达式,恰好用上这这个整数各一次,计算结果为24,超出时间为输。
二、分析
用计算机来算这个题,搜索速度当然有很大优势,我编程喜欢考虑通用一点,不限制输入数量和结果数,甚至不限制运算符数量。这样组合数就很大,如果输入数比较多,则搜索时间会非常长。
我用两个方法来提高搜索速度:一、是大家都能考虑到的重复搜索问题,比如1,2,3和2,3,1所有的组合情况是相同的,我只搜索使用递增序的数组,则可以降低一个组合数的数量级别;二、使用动态规划中的备忘录方法,比如你计算出2和3所有可能的计算结果,则他们与4结合的时候,要用到,与1结合的时候,也要用到,使用备忘录,可以只计算一次,大大降低运算复杂度。
三、设计
整体设计:分别设计4个类:游戏、表达式、运算、分数,各司其责,结构清晰,易于扩展。
-First, the preamble
24-point game is a common game, give the title are four integer requiring answer within a specified period of time in a four calculations give the expression, just use that the integral of the time, results for the 24, beyond the time to lose.
Second, analysis
Use computers to count the title, the search speed of course, there is a great advantage, I enjoy taking generic programming that does not restrict the importation of the volume and the number of results, and even limiting the number of operators. So on a large number of combinations, if you
- 2022-04-21 18:17:05下载
- 积分:1
-
各种高效率排序总结。不看后悔。
冒泡排序 ,堆排序,快速排序,二分法排序(折半排序),归并排序,选择排序,
- 2022-02-15 04:22:39下载
- 积分:1
-
现在国外很多电磁场领域学者研究的热点――时域有限元方法,而该算法在国内尚无教材。该文件为伊利诺伊大学的一本关于该算法的博士论文。完全可以作为对该算法的开发参考。...
现在国外很多电磁场领域学者研究的热点――时域有限元方法,而该算法在国内尚无教材。该文件为伊利诺伊大学的一本关于该算法的博士论文。完全可以作为对该算法的开发参考。-Now, many foreign academics who have studied the hot field of electromagnetic field- time-domain finite element method, and the algorithm is no teaching materials in the country. This document gives the University of Illinois in a doctoral thesis on the algorithm. Complete the development of the algorithm can be used as reference.
- 2022-03-26 13:10:03下载
- 积分:1
-
SOR超松弛迭代法解线性方程组(C语言)
现有大多数迭代法不是对各类线性方程组都有收敛性,在解题时要对原方程组矩阵作一根本的变换,从而可能使条件数变坏,
也可能破坏了变换前后方程组的等价性,以及丧失使原方程组的对称性。但是SOR迭代法可以避免这类问题
- 2023-04-05 17:30:03下载
- 积分:1