CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - IDEA c

搜索资源列表

  1. abc

    0下载:
  2. 关于vb的一些代码 C#制作的拼图游戏C#制作的拼图游戏C ·拼图游戏,可以回退等。练手用的。 ·-open i think you shoud open idea prepared by the pivotal games, and we can usually common are very similar. readers can learn code, the reference program, of course, can also entertainment fo
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-25
    • 文件大小:64401
    • 提供者:品江山
  1. 101259367DES

    1下载:
  2. des的加脱密算法用c语言实现以及一些其他的密码算法-Blowfish, IDEA, Triple DES (3DES), DES, DESE, Gost, Skipjack, TEA, Cast5, Serpent-128, Serpent-192, Serpent-256, Rijndael-128, Rijndael-192, Rijndael-256, RC2, RC4, and Twofish), six popular hash algorithms (SHA-1, SHA-256,
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-03
    • 文件大小:262942
    • 提供者:Andy
  1. Console_WinMine

    0下载:
  2. 控制台扫雷。 内含2部分,1.源代码和运行程序:基于控制台的C++编程,2.实验报告(设计文档):对设计思路,实现过程有详细的介绍,文件夹内有运行截图,可以从大体上掌握。在控制台上实现扫雷,虽然界面稍微差强人意,但想法还是挺好的。-Contains two parts, 1. The source code and run the program: console-based C++ programming, 2. Experimental report (design documents)
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-05
    • 文件大小:383621
    • 提供者:liaoruo
  1. 4_fidea

    1下载:
  2. 基于IDEA的加解密的C语言实现,源代码-IDEA encryption and decryption based C-language source code
  3. 所属分类:CSharp

    • 发布日期:2017-05-06
    • 文件大小:1524804
    • 提供者:hanpan
  1. mifluz-0.24.0.tar

    0下载:
  2. mifluz 的目的是提供一个存储倒排索引c++库,允许存放关键词以便事后进行搜索。-The purpose of mifluz is to provide a C++ library to store a full text inverted index. To put it briefly, it allows storage of occurrences of words in such a way that they can later be searched. The basic id
  3. 所属分类:Search Engine

    • 发布日期:2017-04-09
    • 文件大小:1556772
    • 提供者:laohong
  1. PQ

    0下载:
  2. C语言编写的PQ分解法潮流程序,绝对自创,条理清晰,注释详细,构思精巧-Written in C language trends PQ decomposition process, the absolute self, clarity, detailed notes, the idea of compact
  3. 所属分类:Algorithm

    • 发布日期:2017-03-24
    • 文件大小:1981
    • 提供者:季聪
  1. ValuRang

    0下载:
  2. This book describes a static analysis that aims to prove the absence of buffer overflows in C programs. The analysis is conservative in the sense that it locates every possible overflow. Furthermore, it is fully automatic in that it requires no user
  3. 所属分类:SCM

    • 发布日期:2017-05-19
    • 文件大小:5454915
    • 提供者:John
  1. Quicksort

    0下载:
  2. 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-Quick sort (Quicksort) is a bubble sort of an improvement. By the CAR Hoare in 1962. Its b
  3. 所属分类:Other systems

    • 发布日期:2017-03-24
    • 文件大小:3133
    • 提供者:郑阳
  1. googleinterview

    0下载:
  2. google的一道JAVA面试题,有人用c写了一个,得出这些结果只用了几十毫秒!   有更好思路的可以讨论讨论。-google for a JAVA face questions, someone wrote a c obtained these results only dozens of milliseconds! Have a better idea of the discussion can be discussed.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-08
    • 文件大小:1051
    • 提供者:阿生
  1. cs_mmorpg

    0下载:
  2. 网游基本都是C++写,这篇文章阐述了用CSHARP完成MMORPG的基本思想-Online games which are mostly C++ to write, this paper describes the basic idea CSHARP complete MMORPG
  3. 所属分类:Game Engine

    • 发布日期:2017-04-08
    • 文件大小:25328
    • 提供者:风为
  1. GameTutorial

    0下载:
  2. C#开发WPFSilverlight动画及游戏系列教程(Game Tutorial): 自从QXGame(WPF GAME ENGINE)游戏引擎公布以来,受到很多朋友的热切关注,于是乎有了写教程的想法。那么从今天开始,我将带领大家一步一步的学会如何使用纯C#开发WPF/Silverlight游戏引擎,过程中我会尽量的开源,并对相关小技巧进行解释和介绍,比较复杂的算法原理我会给大家一条绝对可行的思路,至于如何处理这些复杂的算法,那是仁者见仁,智者见智了,或许您写的算法比我的更好呢。-Sinc
  3. 所属分类:Game Program

    • 发布日期:2017-05-26
    • 文件大小:9539941
    • 提供者:karl
  1. Quicksort

    0下载:
  2. 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-Quick sort (Quicksort) is a bubble sort of an improvement. By the CAR Hoare in 1962. The b
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:618
    • 提供者:浩星无恨
  1. Books

    0下载:
  2. This some elementary program using in Objective oriented programming with C++. The idea is simple we have a liibrary with books and methods for adding/searching books in our database.-This is some elementary program using in Objective oriented prog
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:893
    • 提供者:SpaceBoy90
  1. 3

    0下载:
  2. 我自己编写的一个C++代码,能够实现对老师、学生的基本统计,并合理的使用了继承等基本思想-I have written a C++ code, can be achieved on the teachers and students the basic statistics, and reasonable use of the basic idea of inheritance, etc.
  3. 所属分类:Education soft system

    • 发布日期:2017-05-11
    • 文件大小:2673428
    • 提供者:苏丹
  1. Login

    0下载:
  2. .Net 三层建构的基本思想 使用C#.Net 完成登录验证-. Net basic idea of building three
  3. 所属分类:.net

    • 发布日期:2017-04-15
    • 文件大小:33675
    • 提供者:baicai
  1. myc_c1

    0下载:
  2. 这些程序是我自己一个一个写的,现拿出来让和我一样的初学者分享一下,用的是dev C++ 编译,里面包括详细的分析过程和代码注释,有两个文件,一个是c++/c 基础的,另一个是基础提高篇,我相信对初学者是有很大的帮助的! 同时里面有运行的图片,下载的同学可以先看题目,然后在自己去做,在和我比较一下思路,我写的不是很好的地方还望赐教-These procedures are my own one by one written now show it to me in the beginner to
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:234072
    • 提供者:唐耒
  1. myc_c2

    0下载:
  2. 这些程序是我自己一个一个写的,现拿出来让和我一样的初学者分享一下,用的是dev C++ 编译,里面包括详细的分析过程和代码注释,有两个文件,一个是c++/c 基础的,另一个是基础提高篇,我相信对初学者是有很大的帮助的! 同时里面有运行的图片,下载的同学可以先看题目,然后在自己去做,在和我比较一下思路,我写的不是很好的地方还望赐教-These procedures are my own one by one written now show it to me in the beginner to
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-24
    • 文件大小:341436
    • 提供者:唐耒
  1. 24byC

    0下载:
  2. 本源代码用C语言实现了24点牌的求解,重点使用了排列组合的算法思想。-Source code using C language to implement the solution 24-point card, focused on the use of combinations of algorithm idea.
  3. 所属分类:Special Effects

    • 发布日期:2017-04-08
    • 文件大小:2085
    • 提供者:Raymond
  1. webtestMapdata

    0下载:
  2. 网络版本点子地图是望站应用的一个比较常用的C语言结构-Network Version idea map
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-02
    • 文件大小:581468
    • 提供者:张学功
  1. Schedule

    2下载:
  2. 拓扑排序------打印输出计算机本科专业4年每学期的课表 1.采用C++实现。 2.熟练掌握图的应用。 3.熟练掌握图的邻接表存储结构以及拓扑排序的基本思想。 4.上机调试程序,掌握查错、排错使程序能正确运行。 5.算法提示:拓扑排序用队列存储入度为零的顶点-Computer printout of topological sorting------ 4-year undergraduate curriculum of each semester 1. Using C++
  3. 所属分类:Data structs

    • 发布日期:2015-12-13
    • 文件大小:929792
    • 提供者:wang
« 1 2 3 4 5 6 7 89 10 11 12 13 14 15 »
搜珍网 www.dssz.com