代码搜索:recursive
找到约 2,177 项符合「recursive」的源代码
代码结果 2,177
www.eeworm.com/read/130631/14180292
c fibo.c
/*
* Program to calculate a fibonacci number.
*
* This demonstrates a heavily RECURSIVE function.
*
* Copyright 1988,1990 Dave Dunfield
* All rights reserved.
*/
#include \mc\stdio.h
www.eeworm.com/read/129735/14230344
c sinecr.c
/*SINECR.C-REAL-TIME SINE GENERATION BY RECURSIVE EQUATION */
#include "aiccom.c" /*AIC comm routines */
#include /*math library function */
#define SAM
www.eeworm.com/read/128837/14277610
m turbo_sys_demo.m
% This script simulates the classical turbo encoding-decoding system.
% It simulates parallel concatenated convolutional codes.
% Two component rate 1/2 RSC (Recursive Systematic Convolutional) compo
www.eeworm.com/read/123657/14619205
c fibo.c
/*
* Program to calculate a fibonacci number.
*
* This demonstrates a heavily RECURSIVE function.
*
* Copyright 1988,1990 Dave Dunfield
* All rights reserved.
*/
#include \mc\stdio.h
www.eeworm.com/read/220289/14843707
m contents.m
% ReBEL : Recursive Bayesian Estimation Library - Toolkit
% Version 0.1
%
% ---EXAMPLES---
%
% State Estimation
% state_estimation/demse1 - Simple linear time series estimation demo
% stat
www.eeworm.com/read/117953/14893763
java sumprices.java
/* The recursive sum method sums the elements
* from start to end of the array passed to it.
*/
public class SumPrices {
public static double sum(double[] p, int start, int end) {
if (s
www.eeworm.com/read/217397/14966113
c sreadfil.c
/*
* SREADFIL A SIMULINK trigged read from a file.
*
* Syntax: [sys, x0] = sreadfil(t,x,u,flag, filename, format, pulnum, threshold, numOutput, recursive)
* The input of this function is a
www.eeworm.com/read/216234/15023916
cpp g.cpp
/*
The proper way to do this is with Union Find, but
binary search works OK, too. O(n^2 log d) where
d is the max distance.
The recursive connected components implementaiton
www.eeworm.com/read/216014/15029460
m turbo_sys_demo.m
% This script simulates the classical turbo encoding-decoding system.
% It simulates parallel concatenated convolutional codes.
% Two component rate 1/2 RSC (Recursive Systematic Convolutional) compo
www.eeworm.com/read/214167/15112181
cpp prg10_1.cpp
// File: prg10_1.cpp
// the program demonstrates the inorder and postorder
// recursive binary tree scanning algorithms and the
// iterative level-order scanning algorithm. using the
// function b