搜索结果
找到约 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];
书籍源码 复数运算#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 ...
系统设计方案 介绍了一种采用硬件控制的自动数据采集系统的设计方法
介绍了一种采用硬件控制的自动数据采集系统的设计方法,包括数字系统自顶向下的设计思路、Verilog HDL对系统硬件的描述和状态机的设计以及MAX+PLUSII开发软件的仿真。设计结果表明:该采集系统具有很高的实用价值,极大地提高了系统的信号处理能力。 ...
多国语言处理 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 ...
操作系统开发 我所采用的内存管理思想是链表管理思想
我所采用的内存管理思想是链表管理思想,内存分配方案是最佳适应方案(best fit)。其主要的数据结构为
struct node
{
char* p
int memosize
int flag
struct node* next
}
这是一个链表的结点的数据结构,用它来管理内存的分配与回收。P 表示所指的分配的内存的首地址,memosize 表示分配的内存块的大小,flag 为 ...
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 ...
其他书籍 密码算法程序包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.
汇编语言 c++二、通过将其元素插入到双向链表中的方法对数组A进行排序。算法对链表的当前操作位置进行维护
c++二、通过将其元素插入到双向链表中的方法对数组A进行排序。算法对链表的当前操作位置进行维护,当需要插入表项时,若新元素比当前位置值要大,则往前移动;若小则往后移动。编写函数DoubleSort实现上述排序算法。
template <class T>
void DoubliSort( T a[], int n) ...
汇编语言 二、通过将其元素插入到双向链表中的方法对数组A进行排序。算法对链表的当前操作位置进行维护
二、通过将其元素插入到双向链表中的方法对数组A进行排序。算法对链表的当前操作位置进行维护,当需要插入表项时,若新元素比当前位置值要大,则往前移动;若小则往后移动。编写函数DoubleSort实现上述排序算法。
template <class T>
void DoubliSort( T a[], int n) ...
编译器/解释器 词法分析器的功能是输入源程序
词法分析器的功能是输入源程序,输出单词符号。词法分析器的单词符号常常表示成以下的二元式(单词种别码,单词符号的属性值)。
识别保留字:if、int、for、while、do、return、break、continue;
单词种别码为1。
其他的都识别为标识符;单词种别码为2。
常数为无符号整形数;单词种别码为3。
运算符包括:+、-、*、/、= ...