st_push.m
来自「data structures C programs」· M 代码 · 共 10 行
M
10 行
function st=st_push(st,x)
% ST_PUSH
%
% st=ST_PUSH(st,x) inserts x as the top element of the stack st.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
st=sl_puta(st,st.head,x);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?