代码搜索:construct
找到约 6,584 项符合「construct」的源代码
代码结果 6,584
www.eeworm.com/read/266379/11229083
cpp fig01_08.cpp
#include "IntCell.h"
/**
* Construct the IntCell with initialValue
*/
IntCell::IntCell( int initialValue ) : storedValue( initialValue )
{
}
/**
* Return the stored value.
*/
int Int
www.eeworm.com/read/266379/11229400
cpp figaa_02.cpp
#include "MemoryCell.h"
/**
* Construct the MemoryCell with initialValue.
*/
template
MemoryCell::MemoryCell( const Object & initialValue )
: storedValue( initial
www.eeworm.com/read/248079/12603059
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/133757/14025539
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/235380/14072955
m contents.m
% NURBS Toolbox.
% Version 1.0
%
% demos - NURBS demonstrations
%
% nrbmak - Construct a NURBS from control points and knots.
% nrbtform - Applying scaling, translation or rotat
www.eeworm.com/read/202224/15389077
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/202224/15389106
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/202224/15389234
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);