代码搜索:empty
找到约 10,000 项符合「empty」的源代码
代码结果 10,000
www.eeworm.com/read/421085/10757144
png b_empty.png
www.eeworm.com/read/421085/10757225
png bd_empty.png
www.eeworm.com/read/272050/10972752
gif cart_empty.gif
www.eeworm.com/read/470401/6910073
gif tbl-empty.gif
www.eeworm.com/read/468276/6995864
ico trash_empty.ico
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/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/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/7048868
m sl_empty.m
function z=sl_empty(sl)
% SL_EMPTY(sl)
%
% z=SL_EMPTY(sl) returns true if the linked list is empty.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
z=(sl.head==sl.tail);