搜索结果

找到约 908 项符合 Max-Int 的查询结果

DSP编程 fft源代码,#include "f2407_c.h" #include "math.h" #define N 32 // FFT变换的点数 extern void fft(void);

fft源代码,#include "f2407_c.h" #include "math.h" #define N 32 // FFT变换的点数 extern void fft(void); extern void resave(void); interrupt void phantom(void); void sysinit(void); extern int input[2*N];
https://www.eeworm.com/dl/516/314129.html
下载: 155
查看: 1165

书籍源码 复数运算#include<iostream.h> class Complex { public: Complex( double r =0, double i =0 ) C

复数运算#include<iostream.h> class Complex { public: Complex( double r =0, double i =0 ) Complex(int a) { Real = a Image = 0 } void print() const friend Complex operator+ ( const Complex & c1, const Complex & c2 ) friend Complex operator- ( const Complex & c1, const Complex & c2 ) friend ...
https://www.eeworm.com/dl/532/314582.html
下载: 94
查看: 1040

系统设计方案 介绍了一种采用硬件控制的自动数据采集系统的设计方法

介绍了一种采用硬件控制的自动数据采集系统的设计方法,包括数字系统自顶向下的设计思路、Verilog HDL对系统硬件的描述和状态机的设计以及MAX+PLUSII开发软件的仿真。设计结果表明:该采集系统具有很高的实用价值,极大地提高了系统的信号处理能力。 ...
https://www.eeworm.com/dl/678/315008.html
下载: 189
查看: 1052

多国语言处理 AutomaticPropertiesDefaultValues Article_src.zip PropertyInfo[] props = o.GetType().GetPropert

AutomaticPropertiesDefaultValues Article_src.zip PropertyInfo[] props = o.GetType().GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Static) for (int i = 0 i < props.Length i++) { PropertyInfo prop = props[i] if (prop.GetCustom ...
https://www.eeworm.com/dl/637/315670.html
下载: 103
查看: 1030

操作系统开发 我所采用的内存管理思想是链表管理思想

我所采用的内存管理思想是链表管理思想,内存分配方案是最佳适应方案(best fit)。其主要的数据结构为 struct node { char* p int memosize int flag struct node* next } 这是一个链表的结点的数据结构,用它来管理内存的分配与回收。P 表示所指的分配的内存的首地址,memosize 表示分配的内存块的大小,flag 为 ...
https://www.eeworm.com/dl/531/317249.html
下载: 49
查看: 1076

Java书籍 package query public class LinkQuery { private Node front private Node vear public Link

package query public class LinkQuery { private Node front private Node vear public LinkQuery() { this.front=null this.vear=null } public void add(int i) { Node newNode=new Node(i) if(vear==null && front==null) { vear=newNode front=newNode return } vear.next=ne ...
https://www.eeworm.com/dl/656/317846.html
下载: 24
查看: 1068

其他书籍 密码算法程序包miracl contains all the source code for the latest version of MIRACL: a Multiprecision Int

密码算法程序包miracl contains all the source code for the latest version of MIRACL: a Multiprecision Integer and Rational Arithmetic C/C++ library.
https://www.eeworm.com/dl/542/318176.html
下载: 148
查看: 1073

汇编语言 c++二、通过将其元素插入到双向链表中的方法对数组A进行排序。算法对链表的当前操作位置进行维护

c++二、通过将其元素插入到双向链表中的方法对数组A进行排序。算法对链表的当前操作位置进行维护,当需要插入表项时,若新元素比当前位置值要大,则往前移动;若小则往后移动。编写函数DoubleSort实现上述排序算法。 template <class T> void DoubliSort( T a[], int n) ...
https://www.eeworm.com/dl/644/320437.html
下载: 187
查看: 1041

汇编语言 二、通过将其元素插入到双向链表中的方法对数组A进行排序。算法对链表的当前操作位置进行维护

二、通过将其元素插入到双向链表中的方法对数组A进行排序。算法对链表的当前操作位置进行维护,当需要插入表项时,若新元素比当前位置值要大,则往前移动;若小则往后移动。编写函数DoubleSort实现上述排序算法。 template <class T> void DoubliSort( T a[], int n) ...
https://www.eeworm.com/dl/644/320438.html
下载: 103
查看: 1048

编译器/解释器 词法分析器的功能是输入源程序

词法分析器的功能是输入源程序,输出单词符号。词法分析器的单词符号常常表示成以下的二元式(单词种别码,单词符号的属性值)。 识别保留字:if、int、for、while、do、return、break、continue; 单词种别码为1。 其他的都识别为标识符;单词种别码为2。 常数为无符号整形数;单词种别码为3。 运算符包括:+、-、*、/、= ...
https://www.eeworm.com/dl/628/320668.html
下载: 99
查看: 1045