代码搜索:construct

找到约 6,584 项符合「construct」的源代码

代码结果 6,584
www.eeworm.com/read/403011/11524331

h stonewt1.h

// stonewt1.h -- revised definition for the Stonewt class #ifndef STONEWT1_H_ #define STONEWT1_H_ class Stonewt { private: enum {Lbs_per_stn = 14}; // pounds per stone int stone;
www.eeworm.com/read/403009/11524636

h stonewt1.h

// stonewt1.h -- revised definition for the Stonewt class #ifndef STONEWT1_H_ #define STONEWT1_H_ class Stonewt { private: enum {Lbs_per_stn = 14}; // pounds per stone int stone;
www.eeworm.com/read/402283/11539675

m vander6.m

% vander6.m % construct a Vandermonde matrix. %x=(1:6)'; % column vector for input data %m=5; % highest power to compute n=length(x); % number of elements in x V=ones(n,m+1);
www.eeworm.com/read/402283/11539704

m vander4.m

% vander4.m % construct a Vandermonde matrix. %x=(1:6)'; % column vector for input data %m=5; % highest power to compute n=length(x); % number of elements in x p=m:-1:0;
www.eeworm.com/read/402283/11539832

m vander5.m

% vander5.m % construct a Vandermonde matrix. %x=(1:6)'; % column vector for input data %m=5; % highest power to compute n=length(x); % number of elements in x V=ones(n,m+1);
www.eeworm.com/read/400552/11574535

c tree.c

#include #include struct tree { char info; struct tree *left; struct tree *right; }; struct tree *root; /*树的第一个结点*/ struct tree *construct(struct tree *root, stru
www.eeworm.com/read/258434/11864189

h match.h

/* EPSHeader File: match.h Author: J. Kercheval Created: Sat, 01/05/1991 22:27:18 */ /* EPSRevision History J. Kercheval Wed, 02/20/1991 22:28:37 Released to Public Domai
www.eeworm.com/read/344512/11876211

m blkhankel.m

function H = blkhankel(w,i) % BLKHANKEL - construct a block Hankel matrix [T,nw,k] = size(w); j = T - i + 1; if j 1) % multiple time
www.eeworm.com/read/344238/11897679

java c7.java

// reusing/Ex7/C7.java // TIJ4 Chapter Reusing, Exercise 7, page 246 /* Modify Exercise 5 so that A and B have constructors with arguments instead * of default constructors. Write a constructor for
www.eeworm.com/read/344238/11897719

java c.java

// reusing/Ex5/C.java // TIJ4 Chapter Reusing, Exercise 5, page 245 /* Create two classes, A and B, with default constructors (empty argument * lists) that announce themselves. Inherit a new class