代码搜索:递归回溯
找到约 2,805 项符合「递归回溯」的源代码
代码结果 2,805
www.eeworm.com/read/120515/6322068
c algo3-9.c
/* algo3-9.c 用递归函数求解迷宫问题(求出所有解) */
#include /* 根据《PASCAL程序设计》(郑启华编著)中的程序改编 */
struct PosType /* 迷宫坐标位置类型 */
{
int x; /* 行值 */
int y; /* 列值 */
};
#define MAXLENGTH 25 /* 设
www.eeworm.com/read/491641/6432231
m deboor.m
%************递归,德布尔递推算法***************************************
function y=DeBoor(d,u,kn,i,L)
%控制点序列,u节点序列,kn插入的节点,u(i)
www.eeworm.com/read/491108/6440875
h 新浪网友的quicksort.h
bool XL_QuickSort(unsigned*p,int num)
{
int i;
int n_small=1,n_big=num-1;//升序
unsigned m_key=p[0];
bool xiaokong=true;//小头有空
int m_free = 0;
if(num
www.eeworm.com/read/482102/6626735
c algo3-9.c
/* algo3-9.c 用递归函数求解迷宫问题(求出所有解) */
#include /* 根据《PASCAL程序设计》(郑启华编著)中的程序改编 */
struct PosType /* 迷宫坐标位置类型 */
{
int x; /* 行值 */
int y; /* 列值 */
};
#define MAXLENGTH 25 /* 设
www.eeworm.com/read/480948/6654367
c algo3-9.c
/* algo3-9.c 用递归函数求解迷宫问题(求出所有解) */
#include /* 根据《PASCAL程序设计》(郑启华编著)中的程序改编 */
struct PosType /* 迷宫坐标位置类型 */
{
int x; /* 行值 */
int y; /* 列值 */
};
#define MAXLENGTH 25 /* 设
www.eeworm.com/read/401642/11552611
c algo3-9.c
/* algo3-9.c 用递归函数求解迷宫问题(求出所有解) */
#include /* 根据《PASCAL程序设计》(郑启华编著)中的程序改编 */
struct PosType /* 迷宫坐标位置类型 */
{
int x; /* 行值 */
int y; /* 列值 */
};
#define MAXLENGTH 25 /* 设
www.eeworm.com/read/262111/11606614
c algo3-9.c
/* algo3-9.c 用递归函数求解迷宫问题(求出所有解) */
#include /* 根据《PASCAL程序设计》(郑启华编著)中的程序改编 */
struct PosType /* 迷宫坐标位置类型 */
{
int x; /* 行值 */
int y; /* 列值 */
};
#define MAXLENGTH 25 /* 设
www.eeworm.com/read/347458/11664376
c algo3-9.c
/* algo3-9.c 用递归函数求解迷宫问题(求出所有解) */
#include /* 根据《PASCAL程序设计》(郑启华编著)中的程序改编 */
struct PosType /* 迷宫坐标位置类型 */
{
int x; /* 行值 */
int y; /* 列值 */
};
#define MAXLENGTH 25 /* 设
www.eeworm.com/read/347384/11669855
txt 归并排序.txt
归并排序
bool MergeSort(int low,int high,int *array)
{
int middle=(high+low)/2; //将数组划分为2分
if(low
www.eeworm.com/read/257980/11897952
c algo3-9.c
/* algo3-9.c 用递归函数求解迷宫问题(求出所有解) */
#include /* 根据《PASCAL程序设计》(郑启华编著)中的程序改编 */
struct PosType /* 迷宫坐标位置类型 */
{
int x; /* 行值 */
int y; /* 列值 */
};
#define MAXLENGTH 25 /* 设