代码搜索:recursive
找到约 2,177 项符合「recursive」的源代码
代码结果 2,177
www.eeworm.com/read/467764/7000838
m threshold.m
function [pfa, vt] = threshold (nfa, np)
% This function calculates the threshold value from nfa and np.
% The newton-Raphson recursive formula is used
% This function uses "incomplete_gamma.m".
www.eeworm.com/read/165343/7143920
txt genrm.cc.txt
//
//
// Program: genrm.cc
// Create a generator for an RM(r,m) code
// This is a kind of quick, brute-force (non recursive) way to
// do this, that can only be coded explicitly up to a fixed value
www.eeworm.com/read/464335/7165207
m ffttx.m
function y = ffttx(x)
%FFTTX Textbook Fast Finite Fourier Transform.
% FFTTX(X) computes the same finite Fourier transform as FFT(X).
% The code uses a recursive divide and conquer algorithm
www.eeworm.com/read/458682/7291692
sh tree2.sh
#!/bin/bash
# tree2.sh
# Lightly modified/reformatted by ABS Guide author.
# Included in ABS Guide with permission of script author (thanks!).
## Recursive file/dirsize checking script, by Patsie
##
www.eeworm.com/read/452862/7431693
c analyze.c
#include "globals.h"
#include "symtab.h"
#include "analyze.h"
/* counter for variable memory locations */
static int location = 0;
/* Procedure traverse is a generic recursive
* syntax tre
www.eeworm.com/read/451385/7466240
m ffttx.m
function y = ffttx(x)
%FFTTX Textbook Fast Finite Fourier Transform.
% FFTTX(X) computes the same finite Fourier transform as FFT(X).
% The code uses a recursive divide and conquer algorithm
www.eeworm.com/read/297942/7985001
m threshold.m
function [pfa, vt] = threshold (nfa, np)
% This function calculates the threshold value from nfa and np.
% The newton-Raphson recursive formula is used (Eq. (4.59)
% This function uses "incomplete
www.eeworm.com/read/146126/12668919
cpp recursivedpknapsack.cpp
// dynamic programming recursive knapsack
#include
#include
using namespace std;
// global variables
int *profit;
int *weight;
int numberOfObjects;
int f(int i, int
www.eeworm.com/read/246805/12703977
m threshold.m
function [pfa, vt] = threshold (nfa, np)
% This function calculates the threshold value from nfa and np.
% The newton-Raphson recursive formula is used (Eq. (4.59)
% This function uses "incomplete
www.eeworm.com/read/143592/12858923
cpp prg15_6g.cpp
// File: prg15_6g.cpp
// the program solves the 8-Queens problem. it prompts the user for
// the starting row for the queen in column 0 and calls the recursive
// backtracking function queens() to