sl_insrt.m

来自「data structures C programs」· M 代码 · 共 13 行

M
13
字号
function sl=sl_insrt(sl,data)
% SL_INSRT
%
%  sl=SL_INSRT(sl,data) insert data as the first node of the list sl.
%
%  There is no limitation of data type, and different nodes can
%  contain different data types.

% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.

sl_puta(sl,sl.head,data);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?