搜索资源列表

  1. A

    0下载:
  2. 这是我根据A*算法,通过javascr ipt实现的最短路径程序。可以说,程序非常糟糕,不过总算是实现了。思路是起点和终点的跑动过程中,我们中间可能会遇到障碍物,所以,我们不能仅仅是两点一直线,而是聪明的饶过障碍物进行聪明的跑动-This is my under the A* algorithm, through the javascr ipt to achieve the shortest path procedure. It can
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-18
    • 文件大小:2048
    • 提供者:wayne
  1. IDEA_in_C

    0下载:
  2. C实现的IDEA加密算法,可作为应用参考。-C to achieve the IDEA encryption algorithm, the application can be used as reference.
  3. 所属分类:加密解密

    • 发布日期:2024-05-18
    • 文件大小:14336
    • 提供者:yuvmen
  1. jinchengshouhu

    0下载:
  2. 双进程守护例子,想法其实大家都会,但实现不容易,大家可看看,其实运行时移动走一个程序,也失败了-Dual-process guardian example, the idea of fact, we will, but not easy to achieve, we can see, in fact, run-time mobile take a program, but also failed
  3. 所属分类:进程与线程

    • 发布日期:2024-05-18
    • 文件大小:10240
    • 提供者:王奎
  1. No000056

    0下载:
  2. 快速掌握TCP编程技术 TCP编程基本思路,基本方法等-TCP programming technology to grasp the basic idea of TCP programming, basic methods
  3. 所属分类:TCP/IP协议栈

    • 发布日期:2024-05-18
    • 文件大小:380928
    • 提供者:lancy
  1. CppUnit_Cookbook

    0下载:
  2. CppUnit Cookbook中文版 你希望知道你的代码是否正在工作。 你该怎么办? 有很多种方法。使用调试器直接调试或者在你的代码里乱丢一些流输出指令是两种简单的方法,但是它们都有自己的缺点。直接调试代码是个好主意,但是它不是自动进行的。你不得不在每次改动代码以后重新调试。输出流文本也不错,但是它使代码变得面目可憎,并且大多数情况下,它输出的信息比你想要的要多。-CppUnit Cookbook Chinese vers
  3. 所属分类:中间件编程

    • 发布日期:2024-05-18
    • 文件大小:24576
    • 提供者:dawnfire
  1. cpp

    0下载:
  2. 内容比较全面,构思新颖!个人辛苦了两天编写和修改的,多多提意见!-Content more comprehensive, innovative idea! Individuals have worked hard to prepare and modify the two-day, multi-do so!
  3. 所属分类:编程文档

    • 发布日期:2024-05-18
    • 文件大小:2048
    • 提供者:wenxing
  1. shijianpian

    0下载:
  2. 简单轮转法的基本思想是:所有就绪进程按 FCFS排成一个队列,总是把处理机分配给队首的进程,各进程占用CPU的时间片相同。如果运行进程用完它的时间片后还为完成,就把它送回到就绪队列的末尾,把处理机重新分配给队首的进程。直至所有的进程运行完毕。-Simple movement of the basic idea is: all lined up ready for the process according to a FCFS queue
  3. 所属分类:汇编语言

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:Andy
  1. 883

    0下载:
  2. 功能: 用回溯算法求解883喝酒问题。注意: 该程序尽可能用与算法一致的思路实现算法, 力求简单明了, 注重算法的清晰性-Function: The retrospective algorithm 883 alcohol problem. NOTE: The procedures and algorithms as much as possible consistent with the idea of algorithm to sim
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:4096
    • 提供者:佚名
  1. c++source

    0下载:
  2. 利用矩阵的思想 大量数据分类储存 以矩阵的形式储存 大家可以参考下-The idea of using matrix classification of a large amount of data stored in matrix form of storage we can refer to the following
  3. 所属分类:中文信息处理

    • 发布日期:2024-05-18
    • 文件大小:242688
    • 提供者:谭响林
  1. my_cam

    0下载:
  2. 一个比较简单的设想头小程序..(C#)-A relatively simple idea of the first small program .. (C#)
  3. 所属分类:C#编程

    • 发布日期:2024-05-18
    • 文件大小:23552
    • 提供者:hejianhua
  1. MATLAB-newbox

    0下载:
  2. 采用面向对象的基本思想,MATLAB/SIMULINK环境下,开发出一个基于MATLAB的化工单元操作工具箱(ChET)并以此工具箱为基础进行了化工过程模拟的尝试。-Adopt the basic idea of object-oriented, MATLAB/SIMULINK environment, the development of a MATLAB-based toolbox of chemical unit operatio
  3. 所属分类:matlab例程

    • 发布日期:2024-05-18
    • 文件大小:36864
    • 提供者:李玉
  1. HMM

    0下载:
  2. 主要描述了HMM的基本思想及原理,还有其在连续语音中的应用-Main HMM describes the basic idea and principle, as well as its application in continuous speech
  3. 所属分类:语音合成与识别

    • 发布日期:2024-05-18
    • 文件大小:173056
    • 提供者:liujianfei
  1. comb

    0下载:
  2. 一、 程序作用 实现排列组合功能。 例如:如果允许出现的数字为1 2 3 4 ,每个组合有3个元素,则输出的组合为 (1 2 3) (1 2 4) (1 3 4) (2 3 4) 二、 算法实现 采用栈的思想,首先输入第一个组合(1 2 3…..r) 如果r<n,则r弹栈,把r=r+1压栈,如果r=n,则r弹栈,同时把前一项也弹栈,再依次增加,直到出现组合 (n-r+1 n-r+2 ….n). -Fi
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:187392
    • 提供者:yangjun
  1. softradio2

    0下载:
  2. 软件无线电的基本思想是以一个通用、标准、模块化的硬件平台为依托,通过软件编程来实现无线电台的各种功能,从基于硬件、面向用途的电台设计方法中解放出来。-The basic idea of software radio is a generic, standard, modular hardware platform based on software radio programming to achieve a variety of fu
  3. 所属分类:软件工程

    • 发布日期:2024-05-18
    • 文件大小:30720
    • 提供者:zhang xu
  1. compilation-program

    0下载:
  2. 本课程的教学目的是使学生进一步了解计算机的基本组成,汇编指令的格式和使用方法,以及用汇编语言进行程序设计的基本思想和方法。于此同时,希望学生能了解用汇编语言程序来充分发挥计算机性能的基本思想。-The purpose of this course is to enable students to learn more about the computer s basic component, compile and use the fo
  3. 所属分类:汇编语言

    • 发布日期:2024-05-18
    • 文件大小:1536000
    • 提供者:马强业
  1. Pentium

    0下载:
  2. 这两个分别是8位乘法器的VHDL语言的实现,并经过个人用QUARTUS的验证,另外一个是奔腾处理器的设计思想-The two were 8 multiplier realization of VHDL language and personal use Quartus After verification, another is a Pentium processor design idea
  3. 所属分类:VHDL编程

    • 发布日期:2024-05-18
    • 文件大小:378880
    • 提供者:citydremer
  1. fre_ctrl

    0下载:
  2. 利用verilog语言,从上至下层次管理的设计思想;Verilog HDL的行为描述和结构描述,实现8位频率计,4个0检测修正电路的原理说明-The use of Verilog language, top-down hierarchical management design idea Verilog HDL descr iption of the behavior and structure of a descr iption o
  3. 所属分类:软件工程

    • 发布日期:2024-05-18
    • 文件大小:14336
    • 提供者:黎明
  1. WFDesigner

    0下载:
  2. wf做的流程设计器,在.net下提供了一个很好的思路,也可以说是一个非常好的实例-wf do process design, and in the. net to provide a very good idea, it can be said to be a very good example of
  3. 所属分类:.net编程

    • 发布日期:2024-05-18
    • 文件大小:1265664
    • 提供者:pw
  1. nc

    0下载:
  2. NC首先秉承了分布式服务器技术的一惯思想,并进一步改进,提出客户端就是服务器的设计思想,在这种思想的指引下,整个NC系统中的PEER没有任何级别上的区别,也不依赖于任何服务器,NC只是根据网络环境和用户的旨意来运转,用户可以自己做服务器并提供服务给那些没办法做服务器的PEER,也可以只使用别人提供的服务,还可以在使用别人服务的同时,提供力所能及的服务给那些没办法做服务器的PEER!-NC first carried on a distr
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-05-18
    • 文件大小:492544
    • 提供者:hymnal
  1. sy_struts

    0下载:
  2. Intellij IDEA做的struts项目源码-Intellij IDEA do struts project source
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-18
    • 文件大小:31744
    • 提供者:zhangrui
« 1 2 ... 45 46 47 48 49 50»

源码中国 www.ymcn.org