联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 棋牌游戏(343) 
按平台查找All Visual C++(343) 

[棋牌游戏] eight-queens

八皇后问题,是一个古老而著名的问题,是回溯算法的典型案例。该问题是国际西洋棋棋手马克斯·贝瑟尔于1848年提出:在8×8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。
Eight queens problem is an old and well-known problem is backtracking algorithms typical case. The problem is that international chess players Spey Mark Searle in 1848 stated: put eight queens on a chess grid 88, it can not attack each other, that is, any two queens are not in the same row, the same column or the same slash and asked how many pendulum method. (2015-12-09, Visual C++, 3KB, 下载1次)

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

[棋牌游戏] Eight-queen

八皇后问题,是一个古老而著名的问题,是回溯算法的典型案例。该问题是国际西洋棋棋手马克斯·贝瑟尔于1848年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法
Eight queens problem is an old and famous, is a typical case of backtracking algorithm The problem is the international chess player Max bethel in 1848: in the 8 by 8 lattice chess put eight queen, make its can t attack each other, that any two queens are not in the same line on the same column or the same slash and asked how many kinds of pendulum method (2015-03-17, Visual C++, 3915KB, 下载1次)

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

[棋牌游戏] fk_VCPP

一款经典的俄罗斯方块游戏已编译可运行,界面简单请多包涵
A classic Tetris game compiled to run, simple interface be vexed (2013-03-09, Visual C++, 2767KB, 下载2次)

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

[棋牌游戏] VC-P-P-game-development-

VC++游戏编程 共有6个例子:扫雷、五子棋、俄罗斯方块、老鼠和滚球、飞机游戏、五子棋联机游戏。每个例子分为几个模块,有详细的图示及代码。
VC++ game programming a total of six examples: Minesweeper, backgammon, Tetris, mice and bowls, airplane games, backgammon online game. Each example is divided into several modules, detailed illustrations and code. (2012-09-04, Visual C++, 2822KB, 下载4次)

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

[棋牌游戏] gobang

最近做了个小游戏五子棋,两人对战类,是用VC,EasyX做的,在网上只能找到EasyX做的贪吃蛇,俄罗斯方块,没有五子棋,自己做了一个。我学C高级期末成绩就是做这个,可以显示出两人的思考时间,可以不断开局,主要是源代码大家可以学习一下..希望与大家多交流。(Easyx我也放在压缩包里了,自己安装一下)
Recently made a small game backgammon, two arcade, with VC, EasyX do, do online can only find EasyX Snake, Tetris, there is no backgammon, he had made one. I learned C high end performance is to do this, thinking they can show the time, you can continue to start, mainly to the source code you can learn more about .. hope we can communicate. (Easyx I put compression bag, and he installed it) (2011-07-12, Visual C++, 1721KB, 下载22次)

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

[棋牌游戏] KelvinRussia

俄罗斯方块的游戏规则相信大家一定都不陌生,也许还有不少人都是骨灰级玩家了,但是在此还是有必要说明一下游戏的规则,因为从编程和玩家的两个不同角度来观察游戏规则,还是有微妙的区别的——侧重的东西不同
Tetris rules of the game I am sure you are not familiar with, and perhaps there are still many people are the elite enthusiasts, but this is still necessary to explain the rules of the game, because players from the program and to observe the two different angles rules of the game, there are still subtle differences- focusing on something different (2010-02-04, Visual C++, 287KB, 下载7次)

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

[棋牌游戏] Tetris

俄罗斯方块,或称积木游戏,它是利用一些形状各异却又是用正方形组成的方块,经过不同位置不同角度的变化之后,堆积在一起的一种智力游戏。
Tetris, or building blocks, it is to use some different shape but is composed of a square box, through the various different positions, angles after the change, the game stacked together in a kind of intellectual. (2009-12-07, Visual C++, 234KB, 下载5次)

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

[棋牌游戏] SourceCode

中国象棋 本人机对弈程序采用了多种搜索算法.以下是本程序主要的类说明: 1.CEveluation类:估值类,对给定的棋盘进行估值. 2.CMoveGenerator类:走法产生器,对给定的棋盘局面搜索出所有可能的走法. 3.CSearchEngine类:搜索引擎基类. 4.CNegaMaxEngine类:负极大值法搜索引擎. 5.CAlphaBetaEngine类:采用了Alpha-Beta剪枝技术的搜索引擎. 6.CFAlphaBetaEngine类:fail-softalpha-beta搜索引擎. 7.CHistoryHeuristic类:历史启发类. 8.CAlphabeta_HHEngine类:带历史启发的Alpha-Beta搜索引擎. 9.CAspirationSearch类:渴望搜索引擎. 10.CIDAlphabetaEngine类:迭代深化搜索引擎. 11.CMTD_fEngine类:MTD(f)搜索引擎. 12.CTranspositionTable类:置换表. 13.CAlphaBeta_TTEngine类:加置换表的Alpha-Beta搜索引擎. 14.CPVS_Engine类:极小窗口搜索引擎. 15.CNegaScout_TT_HH类:使用了置换表和历史启发的NegaScout搜索引擎. 本程序还具有悔棋,还原功能,还可以记录走法. 注:本程序编写时参考了王小春的<<PC游戏编程(人机博弈)>>,他的书真是好.
Chinese chess game machine procedure I used a variety of search algorithm. The following are the major types of procedures that: (2009-08-20, Visual C++, 147KB, 下载18次)

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

[棋牌游戏] C

利用C++做出的项目源代码:只有象棋、扫雷、俄罗斯方块、FixYou、简易计算器、三微绘图。 请用开发C++的工具打开,在用VS2005及以上版本打开时会出现些问题,请用其他的工具打开!
The use of C++ to make the project source code: only the chess, mine clearance, the Russian box, FixYou, simple calculator, three micro-graphics. Please use the development tool for C++ open, using VS2005 and above and there will be some open questions, please use other tools to open! (2009-06-04, Visual C++, 3158KB, 下载42次)

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

[棋牌游戏] tetris

c++编写的俄罗斯方块,经典使用!游戏对象(Cgame):管理游戏开始,结束,积分,难度;游戏中每个方块当前位置情况;选择新方块;删除满行。 方块对象(CGrid):管理快快的旋转,左移,右移,下移;确定当前方块在游戏中的位置;以及设置方块如何旋转旋转,左移,右移,下移的基本信息。 游戏是对象(CRusRridView):管理游戏的显示与交互。
c++, prepared by the Russian box, the classic use! Game object (Cgame): the management of the game started, the end points, the difficulty game situation in its current location of each box choose a new box delete full line. Object box (CGrid): the management of the rotation as soon as possible, the left, shifted to right, down box determine the current position in the game as well as how to set the box rotating rotation, the left, shifted to right, down the basic information. The game is the object (CRusRridView): the management of the show and interactive games. (2009-05-30, Visual C++, 77KB, 下载4次)

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

[棋牌游戏] russia

功能简单的可视化俄罗斯方块,对于编程中级者较为合适,代码有些部分还可以进行改进,比如增加窗口显示下一个图形,增加计分功能等~
Simple visual features the Russian box, the program is more suitable for intermediate, in some part of the code can also be used for improvements, such as the increase in the next window displays graphics, a scoring function to increase ~ (2009-04-15, Visual C++, 55KB, 下载7次)

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

[棋牌游戏] fangkuai

该程序是一个俄罗斯方块游戏小程序,由于时间仓促没有及时改进,但具体功能已经实现. 感兴趣的朋友可以一起研究开发哦 email:yuyanjun340@163.com
The program is a small Tetris game procedures, because of time constraints did not improve, but the specific function has been achieved. Interested in research and development together with friends can Oh email: yuyanjun340@163.com (2009-02-25, Visual C++, 5966KB, 下载3次)

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

[棋牌游戏] Tetris

该程序实现了俄罗斯方块游戏。这是一个家喻户晓的游戏。该程序包括难度等级、堆积成线的数量、获得分数、下一个方块提示等功能。
The program achieved a Tetris game. This is a well-known game. The program include the difficulty level, the accumulation into the number of lines, access points, the next prompt box functions. (2008-12-18, Visual C++, 2128KB, 下载23次)

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

[棋牌游戏] Russia-sourcecode

俄罗斯方块源程序,参照了我从网上下载的游戏方块设计.在游戏中,加了很多注释,以方便理解,主要的代码都在CChileView.h、CChileView.CPP中.
Tetris source code, in the light of what I downloaded from the Internet game box design. In the game, plus a lot of notes to facilitate understanding, the main code are CChileView.h, CChileView.CPP in. (2008-09-20, Visual C++, 63KB, 下载6次)

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

[棋牌游戏] TetrisCppfans

桌面小游戏:俄罗斯方块 (含源程序) 【软件简介】 虽然是非常古老的小游戏, 但现在仍然百玩不厌。 这个程序用BCB实现也非常简单。 为了让大家看清程序的算法, 程序的界面尽量简单, 没有过多的修饰。 【游戏操作】 左、右、下移动光标键: 可移动下落的方块 空格、回车分别按顺时针和逆时针方向旋转下落的方块 Esc: 暂停/继续 F10: 开始新游戏 其它操作可通过选择菜单来实现。 【计分方法】 只是落下方块: 1 分 同时消去一行: 10 分 同时消去两行: 30 分 同时消去三行: 50 分 同时消去四行: 80 分 (2008-05-29, Visual C++, 239KB, 下载4次)

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

[棋牌游戏] 1

本程序是一个小纸牌游戏,有两个人合伙去表演给别人看,像是一个魔术,一个人从除去大小王的52张牌中抽取5张,一个依次亮出前四张,最后一张由合伙人猜,两人事先说好规则,五张牌中肯定有两张花色相同,数值可以通过加13运算,使两张牌最多相差6,然后亮的第一张牌花色暗示最后一张的花色,中间的三张,暗示要猜的与第一张数值的差值。
This procedure is a small card games, have two people performing partner to look to someone else, like a magic, a person from the removal of the size of Wang (2008-05-28, Visual C++, 1KB, 下载39次)

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

[棋牌游戏] MaJun

1.將一副麻將洗牌(144張) 2.發牌(16張) 3.可以輸入17張麻將,輸出是否胡牌 4.輸入16張麻將,輸出所聽的牌型 5.如果拿到花需要會要求與自動補張 6.加分:程式可以跟人玩
1. Will be a shuffling mahjong (144) 2. Licensing (16) 3. Can be imported 17 mahjong, Output whether the four players. imported 16 mahjong, Output by listening to the license-5. If need be spent to get requirements and automatically fill Zhang 6. extra points : The program can play with other people (2007-06-21, Visual C++, 1KB, 下载29次)

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

[棋牌游戏] 2001578

这是几个比较简单的游戏,有连连看,五子棋,c++俄罗斯方块程序 .txt,qq斗地主辅助工具源代码 (内存扫描版)dephi.rar等
This is a relatively simple game, Lianliankan, 331, c Russian box procedures. Txt, qq Landlords aids source code (memory scan version) dephi.rar etc. (2006-10-26, Visual C++, 222KB, 下载31次)

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

[棋牌游戏] C++wuziqi

非常好, 有一个小地方要加上判段, 就是 "双3" , 两排交错的双 3, 就应该可以结束了. 或一排已经有 4颗而两头又是空的,这时也可宣告胜方,而不是要下满5颗棋才宣告那方胜. 这个代码可当窗体画线画圆很好的示例代码,特加精品.
very good, there is a small place- to add, is the "double 3", two rows of staggered two-three, it should be ended. or have a row of four and two are empty, then can be declared the winner. and not under-five game before declaring it Sheng Fang. This code can be when Circle Line Form painting good example code, grossing- up products. (2006-08-30, Visual C++, 2KB, 下载6次)

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

[棋牌游戏] tetris20

实现俄罗斯方块的源码。 能够演示如何编写一个简单的方块程序 同时还能够演示如何编写如何金山词霸一样的图形用户界面 以及浮雕字等效果
achieve the source. To demonstrate how to prepare a simple squares procedure but will also demonstrate how to prepare how free email the same graphical user interface and the carved words such effects (2005-08-03, Visual C++, 75KB, 下载17次)

http://www.pudn.com/Download/item/id/105832.html
总计:343