代码搜索:operators
找到约 8,993 项符合「operators」的源代码
代码结果 8,993
www.eeworm.com/read/130378/14196335
h global.h
#ifndef GLOBAL_H
#define GLOBAL_H
#include
#include
#include
#include
const int BSIZE=128; //buffer size
const char EOS='\0'; //end of st
www.eeworm.com/read/128030/14318513
cpp assign.cpp
// assign.cpp
// demonstrates arithmetic assignment operators
#include
using namespace std;
int main()
{
int ans = 27;
ans += 10; //same as: ans = ans + 10;
www.eeworm.com/read/224759/14568276
m fullinit.m
function [pop,lastid]=fullinit(n,lastid,maxlevel,oplist,oparity,depthnodes);
%FULLINIT Creates a new GPLAB population with the full method.
% FULLINIT(POPSIZE,LASTID,MAXLEVEL,OPERATORS,ARITY,DE
www.eeworm.com/read/224759/14568348
m newind.m
function [ind,lastid]=newind(varargin)
%NEWIND Creates a new individual for the GPLAB algorithm.
% NEWIND(LASTID,MAXLEVEL,OPERATORS,ARITY,EXACTLEVEL,DEPTHNODES)
% returns a new individual fo
www.eeworm.com/read/224759/14568355
m setoperators.m
function params=setoperators(params,varargin)
%SETOPERATORS Stores operators info as parameters for the GPLAB algorithm.
% SETOPERATORS(PARAMS,OPNAME,NPARENTS,NCHILDREN) returns updated
% pa
www.eeworm.com/read/224759/14568425
m growinit.m
function [pop,lastid]=growinit(n,lastid,maxlevel,oplist,oparity,depthnodes);
%GROWINIT Creates a new GPLAB population with the grow method.
% GROWINIT(POPSIZE,LASTID,MAXLEVEL,OPERATORS,ARITY,DE
www.eeworm.com/read/224612/14580242
cpp ex3_03.cpp
// EX3_03.CPP
// Testing for a letter using logical operators
#include
using namespace std;
int main()
{
char letter = 0; // Store input in here