搜索资源列表
up_VC_Prolog
- VC和prolog联合开发的prolog的编译器.是我的毕业设计,河海大学2006届毕业生的优秀毕业设计.以下是论文的一部分: 第三章 VC++与PROLOG的接口 一.接口方案及准备工作 在这里,我所采用的接口方案是直接调用库函数.PROLOG系列语言中,有一种叫Amzi PROLOG的,提供了较完善的库函数接口.在我的毕业设计中,我所采用的是Amzi PROLOG 5.0版本所提供的库函数接口,所引用的文件为Amzi.h,amzi.dll,amzi.lib.这些文件可以通过下载
byk
- 编译器,编译原理课程设计。PL/0语言是Pascal语言的一个子集,这里分析的PL/0的编译程序包括了对PL/0语言源程序进行分析处理、编译生成类PCODE代码,并在虚拟机上解释运行生成的类PCODE代码的功能。-Compiler, the compiler principles of curriculum design. PL/0 language is a subset of Pascal language set, here the analysis of PL/0, including
Easy51pro
- 在这次单片机培训实验中用到了S51系列单片机的ISP编程线以及软件 想自制该编程线的同学可以从这里下载相关的电路图和程序-Training in the single-chip experiment using the S51 series MCU line ISP and software programming would like to made the students line programming can be downloaded from here and procedur
Motion-compensation
- 运动补偿是一种描述相邻帧(相邻在这里表示在编码关系上相邻,在播放顺序上两帧未必相邻)差别的方法,具体来说是描述前面一帧(相邻在这里表示在编码关系上的前面,在播放顺序上未必在当前帧前面)的每个小块怎样移动到当前帧中的某个位置去。这种方法经常被视频压缩/视频编解码器用来减少视频序列中的空域冗余-The motion compensation is a descr iption of the adjacent frame (adjacent represented here on the coding
led_tog1
- the code given here is not for the hackers who wanna to make the thing easy
msvdimfuse
- This matlab code is intended to demonstrate the physical significance/interpretation of the elements of diagonal matrix in Singular Value Decomposition (SVD). Here, multiple rows of a BIG matrix is gradually being filled with ones which means t
New-folder-(2)
- 2 Introduction This educational software simulates an Ad-hoc network with AODV algorithm, it uses a high level view and only works in Routing layer. it has a user-friendly graphical user interface and has been written in java language. Here is
c
- 最近在网上看一个用VBE编写的关机整人的病毒,感觉有些不足,因为只要在CMD提示下输入shutdown — a来取消关机。下面,我就教大家用C语言来写一个关机整人的小病毒。-Recently on the Internet to see a shutdown of moving the virus written in VBE varies, feeling a little less than, as long as the input shutdown under CMD prompt
ADC-lpc2148
- here is one pdf with introdusing ARM lpc2148 analog digital converter with 2 example ,the examples are useful and they test by keil compiler in farsi languge
NetowkrCards_Test
- /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package netowkrcards_test /** * * @author Cecilia */ public class NetowkrCards_Test { /** * @param args the command
ADCDMA
- Here is an example of ADC-DMA. core - stm32f107vc
AnalogWatchDog
- Here is an example of Analog Watchdog and ADC on stm32f107vc
ERROR-detecting-code-using-CRC-CCITT
- The idea behind CRC calculation is to look at the data as one largebinary number. This number is divided by a certain value and the remainder ofthe calculation is called the CRC. Dividing in the CRC calculation at firstlooks to cost a lot of computin
SPD
- Here is source code of SPD Delphi
Quallcom
- here is source code for quallcom delphi7 its so easy to reprogram
Mip-sample
- Here are some sample codes of NS2
MIP_RR-samples
- Here are some sample codes of NS2.
Ongoing-ns-2-codes
- Here are some sample codes of NS2.
ns2_static_routing.tar
- Static routing is very simple. Each node has a routing table where each entry has the destination and the next node. On receiving a packet, a node find the entry corresponding to the packet s destination, and forwards it to the next node. If there is
operator-precedence-parser
- 1、给出文法如下: G[E] E->T|E+T T->F|T*F F->i(E) 可以构造算符优先表如下: + * ( ) i + * ( ) i 2、计算机中表示上述优先关系,优先关系的机内存放方式有两种1)直接存放,2)为优先关系建立优先函数,这里由学生自己选择一种方式; 3、给出算符优先分析算法如下: k:=1 S[k]:=‘#’ REP