Welcome![Sign In][Sign Up]
Location:
Search - move to front

Search list

[Other resourceJavagame

Description: 打飞机的,背景可以移动,有关头,有奖励,有一架飞机带跟踪,很简单,各位不要笑话我,发上来主要照顾毕业设计危险的XD 说明 1 作品原创 2 论文前面的废话收集于网络(就是TANK的那篇论文),实现部分,也就是老师看的部分原创 3 使用WTK2。2 MIDP 2。0 在写论文的时候不小心把精简过的代码删除了,所以发的代码很乱,但一般老师不看 摘要和目录在最后 图片都是别人的 背景图片是人到壮年的 都是别人的-aircraft in the background can move, the first, incentives, with an aircraft tracking, simple, I should not joke, hair care onto the main graduation design dangerous XD note original works of a two papers in front of rubbish collected in a network (the article is TANK papers) realize, is part of the teacher can use WTK2 original three. 2 MIDP 2. 0 writing papers are not careful streamlining of code is deleted, so the code into confusion, but generally teachers do not see Abstract and directories in the final pictures are pictures of others is the background to the Zhuang people the others are.
Platform: | Size: 557989 | Author: 王斐 | Hits:

[J2MEJavagame

Description: 打飞机的,背景可以移动,有关头,有奖励,有一架飞机带跟踪,很简单,各位不要笑话我,发上来主要照顾毕业设计危险的XD 说明 1 作品原创 2 论文前面的废话收集于网络(就是TANK的那篇论文),实现部分,也就是老师看的部分原创 3 使用WTK2。2 MIDP 2。0 在写论文的时候不小心把精简过的代码删除了,所以发的代码很乱,但一般老师不看 摘要和目录在最后 图片都是别人的 背景图片是人到壮年的 都是别人的-aircraft in the background can move, the first, incentives, with an aircraft tracking, simple, I should not joke, hair care onto the main graduation design dangerous XD note original works of a two papers in front of rubbish collected in a network (the article is TANK papers) realize, is part of the teacher can use WTK2 original three. 2 MIDP 2. 0 writing papers are not careful streamlining of code is deleted, so the code into confusion, but generally teachers do not see Abstract and directories in the final pictures are pictures of others is the background to the Zhuang people the others are.
Platform: | Size: 558080 | Author: 王斐 | Hits:

[ERP-EIP-OA-Portalzhiyuan

Description: 系统特色: 1,栏目无限级分类,形成树型结构,可以随意增加,修改,移动,删除栏目,移动或删除栏目的同时系统自动移动或删除其对应子栏目和信息。 2,系统支持国际化,采用UTF-8编码,资源文件里可以设置多国语言,形成多国语言界面。 3,系统采用Struts标签制,避免Jsp页面出java代码。 3,完全生成前台静态页面,大大提高网民浏览前台页面的速度,降低服务器的资源开销。 4,集成最新编辑器(eWebEditor V4.60),实现所见即所得的效果 -System Characteristics: 1, columns limitless class classification, the formation of tree structure, can add, modify, move, delete columns, move, or delete columns, while the system automatically move or delete the corresponding sub-sections and information. 2, system supports internationalization, the use of UTF-8 encoding, resource documents in multiple languages can be set to form a multi-language interface. 3, the system using Struts tag system to avoid a java code jsp page. 3, completely generate the static front page, greatly improve the prospects of Internet users browse the page the speed and reduce server overhead resources. 4, integration of the latest editor (eWebEditor V4.60), realize the effect of WYSIWYG
Platform: | Size: 1759232 | Author: 陈成 | Hits:

[SCMProgramm

Description: 控制智能车寻黑线运动,可以转向和前进,能够采集前方信息。-Control of smart black line sports car look, you can shift and move forward to the front of the information collected.
Platform: | Size: 23552 | Author: 张军 | Hits:

[JSP/JavaMoveToFrontCompression

Description: Move To Front COmpression/Decompression with Java
Platform: | Size: 1024 | Author: ray | Hits:

[AlgorithmFiveDirectionPad_Algo

Description: 此作業需使用Backtracking algorithm 從第一格開始,從1到9依序測試是否可以填入,若本來此格已有數字,則直接往下一格走。若可以填入( if(promising()) )則填入該數字並且往下一格移動繼續填,若此格沒有可填入的數字時,則結束該格的動作,回到上一格去測試剩下的可能結果。若已經填完( if(solution is found) ),則可能解+1,然後回到前面再繼續尋找接下來的可能解。直到全部可能的數字組合都試完之後,程式結束,所有可能解的個數也會被找到。需要印出的任一組解,則是另外開一個二維陣列去儲存,因為用外部檔案儲存會比較慢,加上陣列不大。Promising函數的內容為檢查是否可以在(row, col)填入num,檢查方法為 1.檢查同列中是否有相同數字 2.檢查同行中是否有相同數字 3.檢查其所屬的九宮格內是否有相同數字 若任依狀況成立,則num不能被填在(row, col)中,return false(0) 若以上狀況皆不成立,則num可被填在(row, col)中,return true(1) 然後為了避免程式運作太久(可行解數太多),所以我設了一個解的最大值MAX_SOLUTION來限制可以跑解的數量,若解太多則直接停止程式,並輸出”此題有超過MAX_SOLUTION組解” -This operation need to use Backtracking algorithm Starting from the first cell, from 1 to 9 can fill in the order of testing, if this box has had the number to go directly down a grid. If you can fill (if (promising ())) then enter the number and move down to fill a grid, if this is not to fill the number of cells, then the end of the cell movement, cell to return to the previous Test the remaining possible outcomes. If you already filled out (if (solution is found)), the solution may be+1, then back to front to continue looking for the next possible solution. Until all possible number combinations are tested after completing the program ended, all the possible number of solutions will be found. Any need to print a set of solutions is another to open a two-dimensional array to store, as an external file storage will be relatively slow, with the array small. Promising function to check whether the content can be (row, col) fill num, inspection methods 1. Check whether the same column
Platform: | Size: 2048 | Author: zelda | Hits:

[JSP/Javadrawingproject

Description: Writing a Graphical Editor---The graphical editor allows you to create and edit three kinds of graphical objects – rectangles, ovals, and line segments – in a drawing. There is a linear ordering of the objects, from front to back, so that if two objects overlap, the one in front is what you see. Each object can appear in either red, green, or blue. The editing operations allow you to change an object’s color, to drag an object, to delete an object, to move an object to the front of the linear order, to move an object to the back of the linear order, and to exchange the locations of two objects.
Platform: | Size: 39936 | Author: onlearning | Hits:

[JSP/JavaMove

Description: 该程序的功能是:有n个整数,使其前面各数顺序向后移m个位置,最后m个数变成最前面的m个数;-The program features are: There are n integers, to move back in front of the order m of the number of positions, finally becoming the foremost m m the number of number
Platform: | Size: 1024 | Author: 李小玉 | Hits:

[Graph DrawingDraw2

Description: 自己在学习MFC的过程中实现的一个简易的画图工具,可以实现直线,曲线(最多250点构成),三角形,矩形,圆,椭圆的绘制以及文本的显示,具有颜色选择,缩放,移动,删除,前后台切换显示,线条粗细选择,自定义格式保存,自定义后缀名文件关联等功能-MFC in the learning process of their own to achieve a simple drawing tools, you can achieve straight lines, curves (up to 250 dots), triangles, rectangles, circles, ellipses, drawing and text display with color selection, zoom, move, delete , front and back switch the display, line thickness options, custom format, the file extension associated with the custom functions ...
Platform: | Size: 56529920 | Author: 郑亚斌 | Hits:

[Industry researchnacsphpfront

Description: PHP page for transfer data from backend to front end. A new major version has been under development alongside PHP 5 for several years. This version was originally planned to be released as PHP 6 as a result of its significant changes, which included plans for full Unicode support. However, Unicode support took developers much longer to implement than originally thought, and the decision was made in March 2010 to move the project to a branch, with features still under development moved to trunk.-PHP page for transfer data from backend to front end A new major version has been under development alongside PHP 5 for several years. This version was originally planned to be released as PHP 6 as a result of its significant changes, which included plans for full Unicode support. However, Unicode support took developers much longer to implement than originally thought, and the decision was made in March 2010 to move the project to a branch, with features still under development moved to trunk.
Platform: | Size: 349184 | Author: Derek Chung | Hits:

[JSP/JavaCasino

Description: §6.4 节的程序洗牌时,首先随机地确定一副牌的两个位置,然后交互这两个位置的牌,我们玩牌时很少采用这种洗牌方式。一种常见洗牌方式是随机地从一副牌中抽出连续一叠牌,将它们放在剩余牌的最上面,并且不断重要这一过程。试将§6.4 节程序的洗牌程序改进为这种洗牌方式。(提示:只需修改§6.4 节程序的shuffle()方法,仍由伪随机数确定数组中的两个位置,然后将数组中间的连续一段元素移到最前;移动时既可逐个元素地向前移,也可考虑引入一个临时的辅助数组。)-§ 6.4 section of the program shuffle, the first deck of cards at random to determine the two locations, then the location of the interaction of these two cards, we rarely use this when playing shuffle mode. A common way is to shuffle randomly drawn from a continuous stack of cards in the card, put them on top of the remaining cards, and has been important to this process. Try to § 6.4 节 process improvement program for this shuffle shuffle mode. (Hint: just modify § 6.4 节 program shuffle () method, still pseudo-random number to determine the location of the array in two, then the array elements in the middle of a move to the front row can move forward by one element shift, also consider the introduction of a temporary auxiliary array.)
Platform: | Size: 2048 | Author: 何俊乐 | Hits:

[Crack HackMTF_transform

Description: MTF变换,一种字节数据流编码方式,用来改善加密压缩性能-The move-to-front transform (or MTF) is an encoding of data (typically a stream of bytes) designed to improve the performance of entropy encoding techniques of compression. When efficiently implemented, it is fast enough that its benefits usually justify including it as an extra step in data compression algorithms.
Platform: | Size: 20480 | Author: sununjoy | Hits:

[GDI-Bitmapdraw3

Description: 建立正方体的数据模型;编写应用程序,利用菜单和键盘结合的方式完成对正方体的进行移动、比例和旋转变换,并显示透视或平行投影结果。要求应用程序具有如下功能: 1、 通过菜单选择的方式,选择对三维空间中的立方体作平行投影或透视投影; 2、 通过键盘按键或鼠标移动的方式,完成对三维空间中的立方体进行平移(上下左右前后),比例变换(放大或缩小)以及旋转变换,并同时显示变换后的投影结果 3、 创建对话框,通过对话框设置透视投影时候的投影中心,以及旋转变换时候的旋转轴(可以设置成分别绕x轴,y轴,z轴进行旋转)-The establishment of the cube data model write applications, the use of menus and keyboard combination to move to complete the cube, the ratio and rotation transform, and shows a perspective or parallel projection results. Application has the following functions: 1, through the selected menu, select the cube in the 3D space for parallel projection or perspective projection 2, by way of keyboard keystrokes or mouse movements to complete the pan in the three-dimensional cube ( up and down around the front and rear), scaling (zoom in or out), and the rotation transformation, and transformed projection results, create a dialog box dialog box to set the perspective projection when the projection center, and the axis of rotation of the rotation transformation (can set, respectively, around the x-axis, y-axis and z-axis rotation)
Platform: | Size: 1995776 | Author: 徐博文 | Hits:

[ELanguageMotion-compensation

Description: 运动补偿是一种描述相邻帧(相邻在这里表示在编码关系上相邻,在播放顺序上两帧未必相邻)差别的方法,具体来说是描述前面一帧(相邻在这里表示在编码关系上的前面,在播放顺序上未必在当前帧前面)的每个小块怎样移动到当前帧中的某个位置去。这种方法经常被视频压缩/视频编解码器用来减少视频序列中的空域冗余-The motion compensation is a description of the adjacent frame (adjacent represented here on the coding relationship adjacent two, on the playback sequence not necessarily adjacent) difference method, specifically the one described earlier (adjacent said herein the coding relationship in front of, on the playback sequence not necessarily how each small block in the current frame the front) to move to a location in the current frame to go. Such methods are often video compression/video codec used to reduce the redundancy of the airspace in the video sequence
Platform: | Size: 10803200 | Author: 张怡然 | Hits:

[ELanguagemove

Description: 通过控件来实现在前面板上对物体的移动从而达到自己想要的效果-Through the front panel controls to achieve the object moving on to achieve their desired effect
Platform: | Size: 11264 | Author: asd | Hits:

[Data structsalgorithms-master

Description: 1. 经典的算法实现 2. 服务器端 3. 正确,易于使用和改造, 一个头文件一个算法,并附带一个demo. 1. 一个算法用一个.h文件表示放到include下.2. 算法演示的demo程序放到src下.3. 程序正确通过后,请发起Pull Requests,代码被验证后入库,并在README中发布新算法实现。 已实现 ( Implemented ): Array shuffle Prime test(trial division) Prime test(Miller-Rabin s method) 2D Array Arbitary Integer Linear congruential generator Maximum subarray problem Bit-Set Queue Stack Binary Heap Fibonacci Heap Priority Queue (list based) Bubble sort Selection sort Insertion sort Radix sort Quick sort Merge sort Heap sort Double linked list Skip list Self-organized linked-list ops (move-to-front, move-ahead-one) Largest common sequence Binary search tree Dynamic order statistics Red-black tree Interval tree Prefix Tree(Trie) Suffix Tree B-Tree Suffix Array等-(classical algorithms implementations) (based on linux/gcc) (correct! and ease of use, one .header file per algorithm) one .header file per algorithm. )( one demo per algorithm. )(Please Use Fork+Pull Requests !!! Correctness is the most important!)
Platform: | Size: 1636352 | Author: 汪小君 | Hits:

[JSP/JavaGT

Description: 龟兔赛跑: 普通格,共100格 龟:每次随机移动1至3格 兔子:每次随机移动1至6格 每20格会随机出现以下功能格各一次(不会在同一格内出现两种或两种以上功能) 功能格:(**和^^可以连续执行,@@和==不能连续执行) **幸运星格:选手可再行动一次 @@地雷格:兔子回到上数两个地雷格,龟回到上一地雷格(若后方无地雷格则回到起点) ==传送格:兔子到达下一传送格,龟到达下数两个传送格(若前方无传送格则到达终点) ||树格:兔子停止三次行动 ^^下坡格:龟前进10格 -Tortoise and the Hare: - Ordinary cells, a total of 100 grid Turtle: Every move randomly 1-3 grid Rabbit: Every move randomly 1-6 grid Georgia will randomly appear every 20 cells each time the following functions (does not appear two or more functions in the same cell) Function Specifications: (^^** and continuously performed ==@@and not continuous execution) ** Lucky grid: Players can once again move @@To Craig: rabbit back on the number of two to Craig, a turtle back to Craig (Craig if no land behind the back to the beginning) == Transport format: Rabbit arrives next transmission grid, the number of turtles to reach the next two transmission grid (if the front end is reached without the transmission grid) || Tree grid: Rabbit stopped three acts ^^ Downhill grid: turtle forward 10 squares
Platform: | Size: 2048 | Author: LPF | Hits:

[AlgorithmBWT_Compre1508411252002

Description: Compression using Burrows Wheeler Transform. Includes n*log(n) comparison tri-partite suffix array block sorting, Move-to-Front coding, dynamic canonical Huffman coding of Wheeler s run-length-coding.
Platform: | Size: 8192 | Author: an0malia | Hits:

[Compress-Decompress algrithmso1f

Description: order-1 move-to-front encoder written in java
Platform: | Size: 1024 | Author: ananamas | Hits:

[WEB CodevBulletin3.07_iNT_SP1

Description: 2 .首页标题截短修正 3 .中文搜索完美解决 v3.4 版本 (可以在改进的二元分割算法(效率高)和直接搜索 post 表(更准确)两种方式选择) - newvbb 4 .+8的时区改为“北京时间” 5 .英文官方模板修正,修复了很多中文词语换行显示错误 6. vBulletin v3.0 引用文字自动截短插件 v1.0 - newvbb 7. 贴图自动缩小 - newvbb 8. Ctrl+Enter发帖快捷键 - newvbb 9. 新主题话题类型下拉选择框插件 10. 信息图标移动到上面 11. 查看帖子中加入发新主题按钮 12. 点击主题列表前面的信息图标可以打开新窗口查看主题 13. 签名在帖子的底部而不是默认的帖子内容的底部 14. 如果会员没有设置头像显示默认头像-The 2 page title truncated correction 3 Chinese search for the perfect solution to the v3.4 Version (can be improved in the two yuan segmentation algorithm (high efficiency) and direct search post table (more accurate) two ways to choose- NewVBB 4.+8 time zone changed to Beijing time 5 English official template correction, a lot of repair Chinese word wrap display error 6 vBulletin V3.0 reference text automatically truncated plug-in v1.0- NewVBB 7 maps automatically shrink- NewVBB 8 Ctrl+Enter posting shortcut- NewVBB 9 new topic topic type drop-down selection box 10 information icon to move to the top 11 view posts to add a new theme button 12 click on the information icon in front of the topic list to open a new window to view the topic. 13 signature at the bottom of the post rather than the bottom of the default post 14 if members do not set the default avatar display
Platform: | Size: 986112 | Author: xxx | Hits:
« 12 3 4 »

CodeBus www.codebus.net