Словари, Словарь Dictionary
! & ( * , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = @ %
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ { ~
T T T- T. T1 T3 TA TB TC TD TE TF TG TH TI TJ TK TL TM TN TO TP TR TS TT TU TV TW TX TY TZ

tail recursion

 
 
tail recursion When the last thing a function (or procedure) does is to call itself. Such a function is called tail recursive. A function may make several recursive calls but a call is only tail-recursive if the caller returns immediately after it. E.g. f n = if n < 2 then 1 else f (f (n-2) + 1) Here the both calls to fib are but only the outer one is tail recursive. See , and, if you aren't sick of them already, , . [] (1996-02-22)
на заглавную О сайте10 самыхСловариОбратная связь к началу страницы
© 2010 Admin User
словарь
словарь online
online словарь
цитаты chrome
XHTML | CSS
1.8.11