题解列表

筛选

for循环解决雇佣兵

摘要:解题思路:m为当前体力值,战斗力的增加δm等于最大体力值M和当前战斗力N的比值注意事项:可以另设n指代当前战斗力,N沿用题目本意,我只用N只是为了减少代码量;N<=M这一条件省略无用操作,也可以用wh……

用java进行的尝试

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class tina{    public static void main(String[] args)……

8皇后 改(dfs)

摘要:解题思路:基本的dfs 改改最后的操作即可注意事项:对角线的表示参考代码:#include<iostream> using namespace std; const int N=9; int n……

八皇后(前三行)(总个数)

摘要:解题思路:dfs回溯 前三行要判断注意事项:对角线表示参考代码:#include<iostream> using namespace std; const int N=10010; int n,……

x皇后问题—字典序最小(dfs)

摘要:解题思路:dfs回溯即可,第一个即为字典序最小注意事项:记得终止程序参考代码:#include<iostream> using namespace std; const int N=10010; ……

最大公约数与最小公倍数(C语言)

摘要:解题思路:  利用定义法求解。注意事项:  不要使用中文输入法编写代码。参考代码:#include<stdio.h>int main(){    int m,n,i,j;    int max = 0……

绝对值排序

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#include<string.h>void sort(int a[100],int len){ int……