CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 C#编程 搜索资源 - 算法

搜索资源列表

  1. thedatastructureandalgorithmCsharp

    0下载:
  2. 一本用C#描述的数据结构与算法,word文档,很难得!-One with C# describes the data structure and algorithm, word documents, rare!
  3. 所属分类:CSharp

    • 发布日期:2017-04-26
    • 文件大小:187799
    • 提供者:郭挺
  1. ipcheck

    0下载:
  2. C#判断主机IP合法性算法,类似判断IP地址范围是否正确的算法,并不是判断Ip是否是连通的-C# to judge the legitimacy of the host IP algorithm, similar to the IP address range to judge whether the algorithm is correct, not to judge whether it is connected Ip
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:13791
    • 提供者:wang
  1. ConsoleAscII

    0下载:
  2. ASCII 码自增四位算法,初始化AAAA,可以调用自增加1,1,2,3,4,5,6,7,8,9,A,....Z-ASCII increase
  3. 所属分类:CSharp

    • 发布日期:2017-04-08
    • 文件大小:15989
    • 提供者:chenmeng
  1. Apriori_Csharp

    0下载:
  2. Apriori_Csharp源码,简单的数据挖掘算法。-Apriori_Csharp source, simple data mining.
  3. 所属分类:CSharp

    • 发布日期:2017-03-31
    • 文件大小:2847
    • 提供者:王军亮
  1. pi_in_C_Program_Language

    0下载:
  2. 结合圆周率(π)的近似计算公式,分析C程序设计中几种常用设计思想,给出了π计算算法及源代码-With pi (π) of the approximate formula of C programming several common design, gives the π calculation algorithm and source code
  3. 所属分类:CSharp

    • 发布日期:2017-04-16
    • 文件大小:109151
    • 提供者:yy
  1. HighPerformanceParallelComputingarticles

    0下载:
  2. 介绍高性能并行计算的文章,主要是关于矩阵并行的一些算法-High Performance Parallel Computing articles
  3. 所属分类:CSharp

    • 发布日期:2017-04-03
    • 文件大小:888592
    • 提供者:王志宇
  1. dbscan

    1下载:
  2. 基于密度聚类算法的实现,用c#语言实现功能比较全面。-Density-based clustering algorithm, with c# language features more comprehensive.
  3. 所属分类:CSharp

    • 发布日期:2017-04-07
    • 文件大小:35563
    • 提供者:唐智英
  1. xu5

    0下载:
  2. 实验目的 掌握栈的特性,能利用栈的特性进行实际应用。 掌握“运算符优先法”,并能利用该算法对表达式求值。 实验要求 求一个表达式的值:输入一个包含“+”、“-”、“*”、“/”、正整数和圆括号的合法表达式,计算该表达方式的运算结果。 有能力的同学可以考虑操作数为多位浮点数的情况。 所写源代码编程风格良好,有详细注释。 程序运行界面良好。-Objective To know the characteristics of the stack test, can take
  3. 所属分类:CSharp

    • 发布日期:2017-04-07
    • 文件大小:918
    • 提供者:王微
  1. Newton-Raphson

    0下载:
  2. 利用牛顿拉夫逊算法解非线性方程,该法其核心也是迭代的思想。-Newton_Raphson for nonlinear equation
  3. 所属分类:CSharp

    • 发布日期:2017-03-24
    • 文件大小:17935
    • 提供者:zerg
  1. AlgorithmSummary

    0下载:
  2. 基于C#的算法汇总,包括一些基本的排序、选择算法,如快速排序、选择排序、冒泡排序等-Algorithm based on C# summary, including some basic sorting, selection algorithm, such as quick sort, selection sort, bubble sort, etc.
  3. 所属分类:CSharp

    • 发布日期:2017-04-15
    • 文件大小:10305
    • 提供者:mutou
  1. DigitalSignature

    0下载:
  2. 此C#代码演示了数字签名的工作模式(附相关资料),算法架构为:RSA+SHA1,你可以参考这些代码。-The C# code shows the operating mode of the digital signature (with relevant data), the algorithm architecture: RSA+ SHA1, you can refer to the code.
  3. 所属分类:CSharp

    • 发布日期:2017-03-31
    • 文件大小:55553
    • 提供者:Alex Kon
  1. half

    0下载:
  2. 折半查找的算法思想是将数列按有序化(递增或递减)排列,查找过程中采用跳跃式方式查找,即先以有序数列的中点位置为比较对象,如果要找的元素值小于该中点元素,则将待查序列缩小为左半部分,否则为右半部分。通过一次比较,将查找区间缩小一半。 折半查找是一种高效的查找方法。它可以明显减少比较次数,提高查找效率。但是,折半查找的先决条件是查找表中的数据元素必须有序-Binary search algorithm idea is to sequence by ordering (ascending or des
  3. 所属分类:CSharp

    • 发布日期:2017-03-28
    • 文件大小:672
    • 提供者:吕济根
  1. Prim

    0下载:
  2. 算法特点:该算法的特点是当前形成的集合T始终是一棵树。将T中U和TE分别看作红点和红边集,V-U看作蓝点集。算法的每一步均是在连接红、蓝点集的紫边中选择一条轻边扩充进T中。MST性质保证了此边是安全的。T从任意的根r开始,并逐渐生长直至U=V,即T包含了 C中所有的顶点为止。MST性质确保此时的T是G的一棵MST。因为每次添加的边是使树中的权尽可能小,因此这是一种"贪心"的策略。 -Algorithm characteristics: the algorithm is characteriz
  3. 所属分类:CSharp

    • 发布日期:2017-04-01
    • 文件大小:1102
    • 提供者:吕济根
  1. SortingApp

    0下载:
  2. 原创:C#实现数据结构的排序算法 原创:C#实现数据结构的排序算法-C# SortingApp
  3. 所属分类:CSharp

    • 发布日期:2017-04-15
    • 文件大小:8334
    • 提供者:lwj
  1. market_checkout_csharp

    1下载:
  2. 利用c#编写的超市收银台系统,算法简单实用,适合初学者。-Written by c# supermarket checkout system, the algorithm is simple and practical, suitable for beginners.
  3. 所属分类:CSharp

    • 发布日期:2017-03-31
    • 文件大小:976
    • 提供者:张文文
  1. exam1

    0下载:
  2. (1)用带表头的链表存放输入的数据,每读入一个数,按升序顺序插入到链表中,链表中允许两个结点有相同值。链表的头结点存放链表后面的结点个数,初始化时就生成头结点(初值为0)。链表翻转是把数据逆序(变成降序),注意,头结点不动。翻转后要再翻转一次,恢复升序后才能插入新元素,否则会出错。 (2)先定义堆栈的几个基本操作,再设计一主函数利用堆的操作完成以下功能:假设一个算术表达式中可以包含三种括号:()[]{},且这三种括号可以按任意次序嵌套使用(如:...[...{...}...[...]...]
  3. 所属分类:CSharp

    • 发布日期:2017-04-24
    • 文件大小:207277
    • 提供者:tamakiramimy
  1. wuban-Cpuls

    0下载:
  2. 假设在周末舞会上,男士和女士进入舞厅时,各自排成一队。跳舞开始时,依次从男队和女队的队头上各出一人配成舞伴。若两队初始人数不相同,则较长的那一队中未配对者等待下一轮舞曲。现要求写一算法模拟上述舞伴配对问题。 输入、输出方法自行设计,要易于操作、不易死机。 -Assuming the ball at the weekend, men and women into the ballroom, the respective queue. Dance begins, followed by
  3. 所属分类:CSharp

    • 发布日期:2017-04-02
    • 文件大小:41832
    • 提供者:tamakiramimy
  1. wuban-C

    0下载:
  2. 假设在周末舞会上,男士和女士进入舞厅时,各自排成一队。跳舞开始时,依次从男队和女队的队头上各出一人配成舞伴。若两队初始人数不相同,则较长的那一队中未配对者等待下一轮舞曲。现要求写一算法模拟上述舞伴配对问题。 输入、输出方法自行设计,要易于操作、不易死机。 -Assuming the ball at the weekend, men and women into the ballroom, the respective queue. Dance begins, followed by
  3. 所属分类:CSharp

    • 发布日期:2017-03-30
    • 文件大小:37557
    • 提供者:tamakiramimy
  1. 2010Csharp

    0下载:
  2. 这个是没有事的时候,自己写的一个小程序,希望对朋友有用,遗传算法C#五子棋游戏程序-This is no matter, he himself wrote a small program, I hope friends useful, genetic algorithms C# backgammon games
  3. 所属分类:CSharp

    • 发布日期:2017-04-08
    • 文件大小:99986
    • 提供者:霍禹铭
  1. cshrapdevelop

    0下载:
  2. 囊括了sharp诸多技术,例如一些常见算法,八皇后问题,猴子选大王问题,字符及字符串处理技术数据校验、控件数据处理’图片数据处理’日期和时间‘windows控件-Include a sharp many techniques, such as some of the common algorithm, the eight queens problem, the monkey king election issues, character and string processing data va
  3. 所属分类:CSharp

    • 发布日期:2017-11-24
    • 文件大小:59194368
    • 提供者:xiewei
« 1 2 ... 45 46 47 48 49 50»
搜珍网 www.dssz.com