
递归
Lins H
这个作者很懒,什么都没留下…
展开
-
从0开始学习递归
从0开始学习递归原创 2022-10-19 20:51:58 · 412 阅读 · 0 评论 -
八皇后递归实现代码(c++)
#include <iostream>#include <cmath>using namespace std;int count=0;//八皇后的可能性int quenen_line[8];//存储8皇后的位置信息,如果把八皇后的序列号作为行,quenen_line(quenen)则是其列 bool find_place(int start,int i) { for(int j=1;j<start;j++)//检查start之前的行对应的列是否重复 {原创 2021-12-18 08:49:57 · 893 阅读 · 0 评论 -
设计一个回溯算法,找出n个数中第二大的数
#include <iostream>using namespace std;int F_max,S_max;int Find_SecondMax(int a[],int n){ if(n==2) { F_max=(a[n-1]>a[n-2]?a[n-1]:a[n-2]); S_max=(a[n-1]<a[n-2]?a[n-1]:a[n-2]); return S_max; } else { S_max=Find_SecondMax(a,n-1)原创 2021-12-07 17:34:34 · 551 阅读 · 0 评论