密匙二、双层桶划分 双层桶划分----其实本质上还是分而治之的思想,重在“分”的技巧上! 适用范围:第 k 大,中位数,不重复或重复的数字 基本原理及要点:因为元素范围很大,不能利用直接寻址表,所以通过多次划分,逐步
2021-09-01 09:45:51 4.43MB 微软面试 100题
1
 第一章、左旋转字符串  第二章、字符串是否包含问题  第三章、寻找最小的 k 个数  第三章续、Top K 算法问题的实现  第三章再续:快速选择 SELECT 算法的深入分析与实现  三之三续、求数组中给定下标区间内的第 K 小(大)元素  第四章、现场编写类似 strstr/strcpy/strpbrk 的函数  第五章、寻找满足条件的两个或多个数  第六章、求解 500 万以内的亲和数  第七章、求连续子数组的最大和  第八章、从头至尾漫谈虚函数  第九章、闲话链表追赶问题  第十章、如何给 10 7̂ 个数据量的磁盘文件排序  第十一章、最长公共子序列(LCS)问题  第十二~十五章:数的判断,中签概率,IP 访问次数,回文问题(初稿)  第十六~第二十章:全排列,跳台阶,奇偶排序,第一个只出现一次等问题  第二十一~二十二章:出现次数超过一半的数字,最短摘要的生成  第二十三、四章:杨氏矩阵查找,倒排索引关键词 Hash 不重复编码实践  第二十五章:Jon Bentley:90%无法正确实现二分查找  第二十六章:基于给定的文档生成倒排索引的编码与实践  第二十七章:不改变正负数之间相对顺序重新排列数组 作者声明:本人 July 对以上所有任何内容和资料享有版权,转载请注明作者本人 July 及 出处。向你的厚道致敬。谢谢。二零一一年十月十三日、以诸君为傲。
2021-09-01 09:29:49 4.43MB 微软面试 100题
1
(1)递归实现 从集合中依次选出每一个元素,作为排列的第一个元素,然后对剩余的元素进行全排列,如 此递归处理,从而 得到所有元素的全排列。算法实现如下: #include #include using namespace std; template void CalcAllPermutation_R(T perm[], int first, int num) { if (num <= 1) { return; } for (int i = first; i < first + num; ++i) { swap(perm[i], perm[first]); CalcAllPermutation_R(perm, first + 1, num - 1);
2021-09-01 09:28:52 4.43MB 微软面试 100题
1
c++小小小小小游戏(DEV-c++)
2021-09-01 09:13:37 36.59MB c++
1
Sams Teach Yourself Unity 2018 Game Development in 24 Hours(3rd) 英文无水印转化版pdf 第3版 pdf所有页面使用FoxitReader、PDF-XChangeViewer、SumatraPDF和Firefox测试都可以打开 本资源转载自网络,如有侵权,请联系上传者或csdn删除 查看此书详细信息请在美国亚马逊官网搜索此书
2021-09-01 08:19:47 16.71MB Unity 2018 Game
1
Mastering Android Game Development with Unity by Wajahat Karim English | 6 Jun. 2017 | ASIN: B01M68DBRU | 352 Pages | AZW3 | 11.27 MB Key Features Develop complex Android games with the help of Unity's advanced features such as artificial intelligence, high-end physics, and GUI transformations. Create amazing Graphical User Interfaces (GUIs) with Unity's new uGUI system Unravel and deploy exciting games across Android devices Book Description Game engines such as Unity are the power-tools behind the games we know and love. Unity is one of the most widely-used and best loved packages for game development and is used by everyone, from hobbyists to large studios, to create games and interactive experiences for the Web, desktop, mobile, and console. With Unity's intuitive, easy-to-learn toolset and this book, it's never been easier to become a game developer. You will begin with the basic concepts of Android game development, a brief history of Android games, the building blocks of Android games in Unity 5, and the basic flow of games. You will configure an empty project for the Jetpack Joyride Clone Game, add an environment and characters, and control them. Next you will walk through topics such as particle systems, camera management, prefabs, animations, triggers, colliders, and basic GUI systems. You will then cover the basic setup for 3D action fighting games, importing models, textures and controlling them with a virtual on-screen joystick. Later you will set up Scene for 3D Configuration, create basic gameplays, and manage input controls. Next you will learn to create the interface for the main menu, gameplay, game over, achievements, and high score screens. Finally you will polish your game with stats, sounds, and Social Networking, followed by testing the game on Android devices and then publishing it on Google Play, Amazon, and OUYA Stores. What you will learn Develop your own Jetpack Joyride clone game Explore the advanced features of Unity 5 by buildin
2021-08-31 20:16:39 11.27MB Android Unity
1
流氓喜欢 在考试期间,无聊类游戏变得无聊。 游戏完全用Java和JavaFX编写,图形基本上也是我的工作。 这很难,所以我祝你好运:) 请随时分叉并提出意见/建议! 谢谢! 屏幕截图: 特征: 参观地牢 物品的收集和弹出 流氓灌装系统 流氓装备系统 照顾角色:进食,饮水等... 爬行的箱子 与怪物战斗 发展技能 和更多... 键盘控制: 键 行动 箭 移动 1,2,...,0 选择一个项目 ž 行动要点:喝酒,拔剑等... X 删除当前项目 Ë 切换设备和角色的视图 一世 识别项目 执照: “啤酒许可证”: Okkindel编写了这款游戏。 只要您保留此通知,就可以使用
2021-08-31 08:28:49 1016KB game java pixel-art pixel
1
Play the ball 的完整版可运行,调了一些参数游戏难度会有点高, 做了一点修改,玩的时候会更加舒服些 本资源是跟着小甲鱼练习的小项目,不需积分仅做娱乐
2021-08-30 12:05:09 9.96MB pygame game
1
Unreal Engine 4 Game Development in 24 Hours, Sams Teach YourselfUnreal Engine 4 Game Development in 24 Hours, Sams Teach Yourself
2021-08-29 23:05:58 20.4MB Unreal Engine 4 Game
1
C++2D游戏教程,采用SDL2框架(https://www.libsdl.org/index.php)。
2021-08-28 15:41:23 4.01MB SDL C++ 2D游戏
1