CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - 24
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Sub Category
Compress-Decompress algrithms
STL
Data structs
Algorithm
AI-NN-PR
matlab
Bio-Recognize
Crypt_Decrypt algrithms
mathematica
Maple
DataMining
Big Data
comsol
physical calculation
chemical calculation
simulation modeling
Search - 24 - List
[
Mathimatics-Numerical algorithms
]
24_point
DL : 0
本人自已寫的一個24點的計算器 希望大家多多的幫我改正。 有什麽更好的算法,還請指點!-my own writing of a 24 point calculator hope you can help me a lot of corrections. What better algorithm, also requested guidance!
Date
: 2008-10-13
Size
: 11.85kb
User
:
王者
[
Mathimatics-Numerical algorithms
]
C_24
DL : 0
简单的一个计算24点的c语言程序-a simple calculation of 24 points c Language Program
Date
: 2008-10-13
Size
: 1.41kb
User
:
梁伟
[
Mathimatics-Numerical algorithms
]
24
DL : 0
弦链表算法合成等-Synthesis Algorithm String List
Date
: 2008-10-13
Size
: 1.42kb
User
:
陶小兵
[
Mathimatics-Numerical algorithms
]
24点程序源代码
DL : 0
一个二十四点的游戏-a 24-point game
Date
: 2008-10-13
Size
: 3.8kb
User
:
sss
[
Mathimatics-Numerical algorithms
]
24dlg
DL : 0
这是一个算24点的程序 里面的算法很值得学习-This is a count of 24 points inside the algorithm is worth learning
Date
: 2008-10-13
Size
: 13.72kb
User
:
陈听
[
Mathimatics-Numerical algorithms
]
Visual24
DL : 0
一个24点算法,用WINAPI写的窗口界面,比较老土,但可供学习交流使用-a 24 point algorithm, written by the WINAPI window interface, the more gentle, but they can study the use of exchange
Date
: 2008-10-13
Size
: 31.13kb
User
:
哈哈
[
Mathimatics-Numerical algorithms
]
do24
DL : 0
算24点程序,源码-24 points counting procedures, FOSS
Date
: 2008-10-13
Size
: 3.59kb
User
:
林涛
[
Mathimatics-Numerical algorithms
]
cn700_del111043242521
DL : 0
给你4 个随机数 ,如何进行加、减、剩、除,运算后得到 24
Date
: 2008-10-13
Size
: 294.59kb
User
:
董亚
[
Mathimatics-Numerical algorithms
]
24_by_xueylloulan
DL : 0
24点游戏,相信大家都玩过 这里给出一个c++算法实现计算机运算-24 point games, I believe we have played here is a c + + algorithm computing
Date
: 2008-10-13
Size
: 98.12kb
User
:
薛云龙
[
Mathimatics-Numerical algorithms
]
Rwave_1.24
DL : 0
时频分析使用的源代码,希望对大家有用,接着上传!
Date
: 2008-10-13
Size
: 624.11kb
User
:
wuxing
[
Mathimatics-Numerical algorithms
]
24点数字游戏的实现
DL : 0
用C++Bulider编写的24点数字游戏的算法-An algorithm for the game of 24 points built by C++ Builder
Date
: 2008-10-13
Size
: 310.14kb
User
:
flyang
[
Mathimatics-Numerical algorithms
]
calc24
DL : 0
自个写的一个穷举法算二十四点的小程序- Oneself writes an exhaustion method calculates 24 scripts
Date
: 2025-12-22
Size
: 0byte
User
:
简明愚
[
Mathimatics-Numerical algorithms
]
24_point
DL : 0
本人自已寫的一個24點的計算器 希望大家多多的幫我改正。 有什麽更好的算法,還請指點!-my own writing of a 24 point calculator hope you can help me a lot of corrections. What better algorithm, also requested guidance!
Date
: 2025-12-22
Size
: 203kb
User
:
王者
[
Mathimatics-Numerical algorithms
]
C_24
DL : 0
简单的一个计算24点的c语言程序-a simple calculation of 24 points c Language Program
Date
: 2025-12-22
Size
: 1kb
User
:
梁伟
[
Mathimatics-Numerical algorithms
]
24点程序源代码
DL : 0
一个二十四点的游戏-a 24-point game
Date
: 2025-12-22
Size
: 4kb
User
:
sss
[
Mathimatics-Numerical algorithms
]
24dlg
DL : 0
这是一个算24点的程序 里面的算法很值得学习-This is a count of 24 points inside the algorithm is worth learning
Date
: 2025-12-22
Size
: 13kb
User
:
陈听
[
Mathimatics-Numerical algorithms
]
do24
DL : 0
算24点程序,源码-24 points counting procedures, FOSS
Date
: 2025-12-22
Size
: 3kb
User
:
林涛
[
Mathimatics-Numerical algorithms
]
24点数字游戏的实现
DL : 0
用C++Bulider编写的24点数字游戏的算法-An algorithm for the game of 24 points built by C++ Builder
Date
: 2025-12-22
Size
: 310kb
User
:
flyang
[
Mathimatics-Numerical algorithms
]
Ex24PointsGame
DL : 0
一、前言 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 type a few more, then the search will be a very long time. I used two methods to improve search speed: one is the U.S. able to take into account the problem of duplicate search, such as 1,2,3 and 2,3,1 is a combination of all the same, I just search using the sequence of incremental array, you can reduce the quantity of a combination of the number of level two, the use of dynamic programming methods in the mem
Date
: 2025-12-22
Size
: 135kb
User
:
xycheng
[
Mathimatics-Numerical algorithms
]
main
DL : 0
该项目是能对输入的4个数判断是否能通过加减乘除等于24,如果能,就给出所有解法(The project is whether the 4 number of input to judge by equal to 24 If the add, subtract, multiply and divide, and give all solutions)
Date
: 2025-12-22
Size
: 1kb
User
:
GyDI
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.