代码搜索:直驱式
找到约 10,000 项符合「直驱式」的源代码
代码结果 10,000
www.eeworm.com/read/383049/8980029
h cfgsimplified.h
//@author LiuHao ShenZhen University 刘浩 2008年11月1日
#include
#include
using namespace std;
class Simplify{
private:
typedef struct{
string value;//产生式
int flag;//f
www.eeworm.com/read/426535/9015482
asv polynom.asv
function p = polynom(a)
%POLYNOM多项式类构造函数
% p = POLYNOM(v) 创建creates a polynomial object from the vector v,
% containing the coefficients of descending powers of x.
if nargin == 0
p.c = [];
www.eeworm.com/read/424004/10508630
cpp ex9_9.cpp
//【例9.9】文本式数据文件的创建与读取数据。
#include
#include
#include
#include
using namespace std;
class inventory{
string Description;
string No;
int Quantity;
double
www.eeworm.com/read/452313/7442027
c crc_8.c
/*8位crc校验的计算源码,查表计算,可以计算任意8位的多项式的校验*/
#include "stdio.h"
///////////////////////////////////////////////////////////////////////////////////////////
/*initial table*/
void InitCRC(unsigned int P
www.eeworm.com/read/450720/7477589
cpp main.cpp
#include
using namespace std;
struct Poly //定义一个线性表存储多项式
{
int coef;
int exp;
struct Poly *next;
};
typedef struct Poly Poly;
Poly *creatPoly()
www.eeworm.com/read/330060/12918038
cpp precept.cpp
#include "stdafx.h"
#include "Precept.h"
//保存产生式strLeft为左部,strRight为右部
Precept::Precept(void)
{
strLeft = "";
strRight = "";
}
Precept::~Precept(void)
{
}
Precept::Precept(string le
www.eeworm.com/read/241769/13121311
cpp bucketsort.cpp
////////////////
// 桶式排序 //
////////////////
#include "iostream.h"
#include "stdlib.h"
#include "string.h"
#include "Compare.h"
#include "BucketSorter.h"
// 设定随即函数的种子
inline void Ran
www.eeworm.com/read/323103/13354791
m crc_decode.m
function [crc_decode_rev,error]=crc_decode(rev,poly)
[M N]=size(poly);
[q r]=deconv(rev,poly); %多项式相除
r=mod(abs(r),2); %
if r == ze