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

搜索资源列表

  1. tanxinsuanfa

    0下载:
  2. 贪心算法又被称为登山法,根本思想是逐步获得最优解,使用贪心算法选取那些最可能实现结果的解来考虑,即以逐步的最优达到最终的全局最优。哈夫曼算法是构造最优前缀码的贪心算法,以自底向上的方式构造表示最优前缀码的二叉树T,在算法中编码字符集中的每一字符c的频率为f(c),以f为键值的优先队列Q用在贪心选择时,有效地确定算法当前要合并的两棵具有最小频率的树,一旦两棵具有最小频率的树合并后,产生一棵新的树,其频率为合并的两棵树的频率之和,并将新树插入优先队列Q。-Greedy algorithm is a
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:1792
    • 提供者:ss
  1. 123vc

    0下载:
  2. 这是调试过后的程序基本上没有什么大的变动只是一些小的问题.这是C语言写的所以看起来不太好看但基本思想是体现出来了.现贴上去. 需要说明一点的是:它的原图像,水印图像是固定的.名字分别是:lena.bmp sdulogo.bmp 嵌入水印后的图像文件是: lenaw.bmp  提取水印后的图像文件是:logo.bmp-This is a debugging program after no major changes are basically just some minor
  3. 所属分类:Special Effects

    • 发布日期:2017-05-12
    • 文件大小:3011984
    • 提供者:吴波
  1. jianyishuzipinlvji

    0下载:
  2. (1)基本要求: a.被测信号的频率范围为1~20kHz,用4位数码管显示数据。 b.测量结果直接用十进制数值显示。 c.被测信号可以是正弦波、三角波、方波,幅值1~3V不等。 d.具有超量程警告(可以用LED灯显示,也可以用蜂鸣器报警)。 e.当测量脉冲信号时,能显示其占空比(精度误差不大于1 )。 (2)发挥部分 a.修改设计,实现自动切换量程。 b.构思方案,使整形时,以实现扩宽被测信号的幅值范围 -(1) Basic requirements: a.
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-08
    • 文件大小:4487
    • 提供者:longking
  1. TC2

    0下载:
  2. 功能:把一个或多个16色位图转换为一个可以被C或C++ 包含(include)的.H头文件. 提示:开始之后,要求输入文件名,一般来说,将BMP文件放在一个较易敲打出来的路径可能是个不错的想法. 但是,将BMP文件与16BMP2H放在同一路径可能更为方便,因为这样你可以不用打出前面的路径. 16BMP2H 要求文件输入时带后缀!也就是文件全名. -Function: the one or more of the 16-color bitmap that can be co
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-04-04
    • 文件大小:2202
    • 提供者:liyi
  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-01
    • 文件大小:8174
    • 提供者:杨金
  1. LongBar_2.1_Build_313

    0下载:
  2. LongBar是一个可提供一个页签管理功能边框栏,运行在Windows XP/Vista/7操作系统上-LongBar is an alternative tile-based sidebar for Windows XP/Vista/7. It is based on idea of Longhorn Sidebar. LongBar shows some relevant information to user using tiles. Tiles are mini-applications
  3. 所属分类:.net

    • 发布日期:2017-04-05
    • 文件大小:873827
    • 提供者:刘晓玲
  1. kmean

    0下载:
  2. 包括K-均值聚类算法的思想介绍,kmeans的MATLAB代码,c语言代码、c++代码。-Including the K-means clustering algorithm introduced the idea, kmeans of MATLAB code, c language code, c++ code.-Entropy Based Subspace Clustering for Mining Data- ENCLUS- a new version of PROCLUS algorit
  3. 所属分类:Special Effects

    • 发布日期:2017-05-03
    • 文件大小:1130028
    • 提供者:陈老师
  1. data-structure

    0下载:
  2. 数据结构(C语言描述) 详细讲解数据结构的实现过程原理,另有源码例程-Present commonly used data structure. Introduce the idea of tradeoff(折中) reinforce the concept of costs and benefits associated with every data structure. Measure the effectiveness of a data structure or algo
  3. 所属分类:Data structs

    • 发布日期:2017-05-28
    • 文件大小:10738613
    • 提供者:萧瑜
  1. quicksort

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

    • 发布日期:2017-04-03
    • 文件大小:256499
    • 提供者:huang
  1. FCM

    0下载:
  2. FCM算法是一种基于划分的聚类算法,它的思想就是使得被划分到同一簇的对象之间相似度最大,而不同簇之间的相似度最小。模糊C均值算法是普通C均值算法的改进,普通C均值算法对于数据的划分是硬性的,而FCM则是一种柔性的模糊划分。-FCM algorithm is a clustering algorithm based on division, the idea is to make it to the same cluster is divided into the biggest similari
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-10
    • 文件大小:2112943
    • 提供者:张瑞洁
  1. unix-program-answer

    0下载:
  2. 这份文档不是 FAQ(Frequently Answered Question),不少问题属于 FUQ(Freque- ntly Unanswered Question)。换句话说,不一定是最常见的编程、应用问答,很可 能其中的答案尚是一个构思,还没有成为现实,又或者根本是个错误的思想火花。但 是,她的确在试图回答一些很有意义的问题,让更多的 Unix/C 程序员、系统管理员共 享彼此的智慧,那是三十年前无数前辈精英做到过的,也是我们正试图做到的。-This docume
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:327755
    • 提供者:zhangsy
  1. ELS

    0下载:
  2. 俄罗斯方块源程序,它是用c语言写的,有一些是图形编程,它的思想和算法很好,对c语言编程有很大的作用-Tetris source code, it is c language, there are some graphical programming, it' s a good idea and algorithm of c programming language has a significant role
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-06
    • 文件大小:5673
    • 提供者:常辰飞
  1. select

    0下载:
  2. 套接字I/O模型s e l e c t(选择)模型是Wi n s o c k中最常见的I / O模型。之所以称其为“ s e l e c t模型”,是由于 它的“中心思想”便是利用s e l e c t函数,实现对I / O的管理!-Socket I/O model select (selection) model is Wi nsock the most common I/O model. It is called " select model" , because it&
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-03-30
    • 文件大小:2499
    • 提供者:qin
  1. computer

    0下载:
  2. 给出一个计算器的编程方法,通过这个例子的学习可以掌握C#界面编程的基本思路-Given a calculator programming, through the example of learning to master C# programming interface can be the basic idea
  3. 所属分类:CSharp

    • 发布日期:2017-04-03
    • 文件大小:62885
    • 提供者:云中玉林
  1. Image-Warping

    0下载:
  2. C#实现的基于线性插补和双缓冲面板的图像映射算法-Image warping is a very common technique used by people who work on image caricaturization or cartoonization. However, it is very hard to find the idea implemented on the Internet. Using some code from Christian Graus great
  3. 所属分类:Special Effects

    • 发布日期:2017-04-03
    • 文件大小:927734
    • 提供者:小小
  1. MASK

    0下载:
  2. C语言画面具。可以描画出自己设计的面具:首先要根据自想法建模。主要学习如何画图。-Screen with the C language. Can design their own mask painted: first, according to the idea of ??self-modeling. Mainly to learn how to draw.
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-04-10
    • 文件大小:689
    • 提供者:
  1. Wireless-Sensor-Network-Simulator-v1.1

    0下载:
  2. This application is a simulation of a wireless sensor network. Such a network is used to detect and report certain events across an expanse of a remote area - e.g., a battlefield sensor network that detects and reports troop movements. The idea behin
  3. 所属分类:.net

    • 发布日期:2017-03-23
    • 文件大小:371932
    • 提供者:diana
  1. crisscross-latest.tar.tar

    1下载:
  2. CrissCross是一种小型的跨平台C + +库,用于处理控制台和文件I / O , CPU的识别( CPUID ) ,散列( MD2 , MD4 , MD5编码,了SHA - 1 ,SHA- 256 ,SHA- 512 ,Tiger) ,Socket( TCP和目前唯一的UDP )和数据结构( LList , DArray , RedBlackTree , AVLTree , SplayTree等) 。其目的是运行在Windows , Linux , FreeBSD的, OpenBSD系统,
  3. 所属分类:Embeded Linux

    • 发布日期:2017-03-28
    • 文件大小:501491
    • 提供者:Mike
  1. TextWGL

    0下载:
  2. 梁友栋-Barsky裁剪算法,算法的基本思想:当要裁剪的线段是P0P1, P0P1和窗口边界交于A,B,C,D四点。从A,B和P0三点中找出最靠近的P1的点,从C,D和P1中找出最靠近P0的点。-Liangyou Dong-Barsky clipping algorithm, the algorithm' s basic idea: When you want to cut the line is P0P1, P0P1 and window borders intersect at A,
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:1896379
    • 提供者:liqianmei
  1. texturehw5.tar

    0下载:
  2. open gl version giving idea about how to use raw files instead jpeg and md files extract and compile with g++ -lm -lglut -lGL -lGLU hw5.c-open gl version giving idea about how to use raw files instead jpeg and md files extract and
  3. 所属分类:OpenGL program

    • 发布日期:2017-04-01
    • 文件大小:95452
    • 提供者:souku
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 »
搜珍网 www.dssz.com