代码搜索:recursion
找到约 958 项符合「recursion」的源代码
代码结果 958
www.eeworm.com/read/185314/5238104
java recursivebinarylistsearcher.java
package com.wrox.algorithms.bsearch;
import com.wrox.algorithms.lists.List;
import com.wrox.algorithms.sorting.Comparator;
/**
* A {@link ListSearcher} that uses recursion.
*
*/
public class Recu
www.eeworm.com/read/340665/3280724
c recurse-3.c
/* Tests that macros that look recursive but are not are accepted. */
/* { dg-do preprocess } */
#define g(x) x
g(g(g(g(g(g(g)))))); /* { dg-bogus "detected recursion" } */
/* This macro ge
www.eeworm.com/read/440906/1782400
c recurse-3.c
/* Tests that macros that look recursive but are not are accepted. */
/* { dg-do preprocess } */
#define g(x) x
g(g(g(g(g(g(g)))))); /* { dg-bogus "detected recursion" } */
/* This macro ge
www.eeworm.com/read/366702/2883999
c recurse-3.c
/* Tests that macros that look recursive but are not are accepted. */
/* { dg-do preprocess } */
#define g(x) x
g(g(g(g(g(g(g)))))); /* { dg-bogus "detected recursion" } */
/* This macro ge
www.eeworm.com/read/194440/8193875
m levrec.m
function x=levrec(aa,b);
% x=levrec(aa,b)
%
% This function solves the matrix equation Tx=b for the vector
% x using Levinson recursion. The symmetric Toeplitz matrix T is
% assumed specified comple
www.eeworm.com/read/235612/14060776
m levrec.m
function x=levrec(aa,b);
% x=levrec(aa,b)
%
% This function solves the matrix equation Tx=b for the vector
% x using Levinson recursion. The symmetric Toeplitz matrix T is
% assumed specified comple
www.eeworm.com/read/358784/10179631
asm csum.asm
TITLE CalcSum Program (Csum.asm)
; This program demonstrates recursion as it sums
; the integers 1-n.
; Last update: 8/2/01
INCLUDE Irvine32.inc
.code
main PROC
mov ec
www.eeworm.com/read/458661/7291874
m bkwrec.m
% bkwrec.m - order-decreasing backward layer recursion - from a,b to r
%
% Usage: [r,A,B] = bkwrec(a,b)
%
% a,b = order-M reflection polynomials, M = number of layers
%
% r = reflection coeffici