代码搜索:recursive
找到约 2,177 项符合「recursive」的源代码
代码结果 2,177
www.eeworm.com/read/168111/9939438
m iforgot.m
function iforgot(n)
%IFORGOT Recursive Function Call Example.
%
% D.C. Hanselman, University of Maine, Orono, ME, 04469
% 1/25/95
% Copyright (c) 1996 by Prentice-Hall, Inc.
if nargin==0,n=20;end
if
www.eeworm.com/read/361386/10055383
tig test7.tig
/* define valid mutually recursive functions */
let
function do_nothing1(a: int, b: string):int=
(do_nothing2(a+1);0)
function do_nothing2(d: int):string =
(do_nothing1(d, "str");" ")
in
do_no
www.eeworm.com/read/361386/10055416
tig test6.tig
/* define valid mutually recursive procedures */
let
function do_nothing1(a: int, b: string)=
do_nothing2(a+1)
function do_nothing2(d: int) =
do_nothing1(d, "str")
in
do_nothing1(0, "str2")
en
www.eeworm.com/read/361386/10055448
tig test18.tig
/* error : definition of recursive functions is interrupted */
let
function do_nothing1(a: int, b: string):int=
(do_nothing2(a+1);0)
var d:=0
function do_nothing2(d: int):string =
(do_nothing1(
www.eeworm.com/read/361386/10055506
tig test7.tig
/* define valid mutually recursive functions */
let
function do_nothing1(a: int, b: string):int=
(do_nothing2(a+1);0)
function do_nothing2(d: int):string =
(do_nothing1(d, "str");" ")
in
do_no
www.eeworm.com/read/361386/10055532
tig test6.tig
/* define valid mutually recursive procedures */
let
function do_nothing1(a: int, b: string)=
do_nothing2(a+1)
function do_nothing2(d: int) =
do_nothing1(d, "str")
in
do_nothing1(0, "str2")
en
www.eeworm.com/read/361386/10055567
tig test18.tig
/* error : definition of recursive functions is interrupted */
let
function do_nothing1(a: int, b: string):int=
(do_nothing2(a+1);0)
var d:=0
function do_nothing2(d: int):string =
(do_nothing1(
www.eeworm.com/read/357852/10200239
cpp codevisitor.cpp
#include "codevisitor.h"
#include
#include
#include
CodeVisitor::CodeVisitor(QString filters, bool recursive) : m_NumFiles(0) {
QStringList filterList = filter
www.eeworm.com/read/425978/10298705
c mutex_w32.c
/*
** 2007 August 14
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness
www.eeworm.com/read/278099/10569537
c bitcnts.c
/* +++Date last modified: 05-Jul-1997 */
/*
** BITCNTS.C - Test program for bit counting functions
**
** public domain by Bob Stout & Auke Reitsma
*/
#include
#include