代码搜索:Mathworks
找到约 4,523 项符合「Mathworks」的源代码
代码结果 4,523
www.eeworm.com/read/465911/7048827
m dl_empty.m
function z=dl_empty(dl)
% DL_EMPTY(dl)
%
% z=DL_EMPTY(dl) returns true if the linked list is empty.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
z=sl_empty(dl);
www.eeworm.com/read/465911/7048836
m st_new.m
function st=st_new
% ST_NEW
%
% st=ST_NEW returns an empty stack.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
st=sl_new;
www.eeworm.com/read/465911/7048842
m qu_empty.m
function z=qu_empty(qu)
% QU_EMPTY
%
% z=QU_EMPTY(qu) returns true if the queue is empty.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
z=sl_empty(qu);
www.eeworm.com/read/465911/7048843
m rb_inord.m
function rb_inord(rb,func,varargin)
% RB_INORD
%
% RB_INORD(rb,func,...) traverses the tree inorder.
% calling func on every node data.
% Copyright (c) MathWorks Inc. 1998-2001. All rights re
www.eeworm.com/read/465911/7048847
m rb_new.m
function rb=rb_new
% RB_NEW
%
% rb=RB_NEW returns an empty red-black binary tree.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
rb=bt_new;
www.eeworm.com/read/465911/7048850
m st_empty.m
function z=st_empty(st)
% ST_EMPTY
%
% z=ST_EMPTY(st) returns true if the stack is empty.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
z=sl_empty(st);
www.eeworm.com/read/465911/7048851
m qu_new.m
function qu=qu_new
% QU_NEW
%
% qu=QU_NEW returns an empty queue.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
qu=sl_new;
www.eeworm.com/read/465911/7048853
m bt_posto.m
function bt_posto(bt,func,varargin)
% BT_POSTO
%
% BT_POSTO(bt,func,...) traverses the tree postorder,
% calling func on every node data.
% Copyright (c) MathWorks Inc. 1998-2001. All rights
www.eeworm.com/read/465911/7048860
m rb_find.m
function node=rb_find(rb,key)
% RB_FIND
%
% node=RB_FIND(rb,key) finds the node with key.
% if key was not found, node=0.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
nod
www.eeworm.com/read/465911/7048861
m rb_preor.m
function rb_preor(rb,func,varargin)
% RB_PREOR
%
% RB_PREOR(rb,func,...) traverses the tree preorder,
% calling func on every node data.
% Copyright (c) MathWorks Inc. 1998-2001. All rights r