rb_find.m

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

M
11
字号
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.

node=bt_find(rb,key);

⌨️ 快捷键说明

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