代码搜索:递归回溯
找到约 2,805 项符合「递归回溯」的源代码
代码结果 2,805
www.eeworm.com/read/327496/3455272
c 逆矩阵.c
#define N 5 /*[注]:修改6为你所要的矩阵阶数*/
#include "stdio.h"
#include "conio.h"
/*js()函数用于计算行列式,通过递归算法实现*/
int js(s,n)
int s[][N],n;
{int z,j,k,r,total=0;
int b[N][N];/*b[N][N]用于存放,在矩阵s[
www.eeworm.com/read/306178/3748495
c wizmap.c
//Map here功能 By JackyBoy 1999/11/19
//由于严重影响速度(递归调用导致!),所以进行此命令的使用应该减少玩家的精力或者气息
#include
#define MaxX 7
#define MaxY 30
inherit F_CLEAN_UP;
int X=7,Y=10;
static mixed m;
static string *rfile
www.eeworm.com/read/306178/3748709
c admmap.c
//Map here功能 By JackyBoy 1999/11/19
//由于严重影响速度(递归调用导致!),所以进行此命令的使用应该减少玩家的精力或者气息
#include
#define MaxX 30
#define MaxY 50
inherit F_CLEAN_UP;
int X=7,Y=10;
static mixed m;
static string *rfil
www.eeworm.com/read/306178/3748767
c wizmap.c
//Map here功能 By JackyBoy 1999/11/19
//由于严重影响速度(递归调用导致!),所以进行此命令的使用应该减少玩家的精力或者气息
#include
#define MaxX 7
#define MaxY 30
inherit F_CLEAN_UP;
int X=7,Y=10;
static mixed m;
static string *rfile
www.eeworm.com/read/381869/2639969
java queen8.java
//8 Queen 递归算法
//如果有一个Queen放在 chess[i]=j;
//则不安全的地方是 k行j位置,j+k-i位置,j-k+i位置
import java.lang.*;
class Queen8{
static final int QueenMax = 8;
static int oktimes = 0;
static int chess[] = new
www.eeworm.com/read/367675/2837269
txt 688.txt
发信人: minerboy (miner), 信区: DataMining
标 题: Re: 请问Apriori和FP算法到底那个效果好在large data
发信站: 南京大学小百合站 (Tue Aug 27 14:09:21 2002)
【 在 jimo 的大作中提到: 】
: 哎哎
: 但是fptree 还要递归呢
: 【 在 luoes (luoes) 的大作中
www.eeworm.com/read/357992/3007698
java queen8.java
//8 Queen 递归算法
//如果有一个Queen放在 chess[i]=j;
//则不安全的地方是 k行j位置,j+k-i位置,j-k+i位置
import java.lang.*;
class Queen8{
static final int QueenMax = 8;
static int oktimes = 0;
static int chess[] = new
www.eeworm.com/read/393250/8302338
txt 6.36.txt
Status Similar(BiTree t1, BiTree t2)
/* 判断两棵二叉树是否相似的递归算法 */
{
if(t1==NULL&&t2==NULL) return 1;
if(t1->lchild&&!t2->lchild || !t1->lchild&&t2->lchild)
return 0;
if(t1->rchild&
www.eeworm.com/read/368262/9703545
cpp algo3-9.cpp
// algo3-9.cpp 用递归函数求解迷宫问题(求出所有解)
#include // 根据《PASCAL程序设计》(郑启华编著)中的程序改编
struct PosType // 迷宫坐标位置类型
{
int x; // 行值
int y; // 列值
};
#define MAXLENGTH 25 // 设迷宫的最大行列为25
www.eeworm.com/read/269550/11094589
cpp algo3-9.cpp
// algo3-9.cpp 用递归函数求解迷宫问题(求出所有解)
#include // 根据《PASCAL程序设计》(郑启华编著)中的程序改编
struct PosType // 迷宫坐标位置类型
{
int x; // 行值
int y; // 列值
};
#define MAXLENGTH 25 // 设迷宫的最大行列为25