题解列表
迷宫问题 经典bfs模板,详细注释,注意细节!
摘要:**bfs搜索,方法都会,千万注意细节**
```cpp
#include
#include
#include
using namespace std;
char map[105][105……
Java 排序加格式化输出
摘要:import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void ma……
C++代码,01背包做法
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int f[2100][2100];char a[2100],b[2100];in……
2609: 蓝桥杯2021年第十二届省赛真题-时间显示[java版]
摘要:### 解题思路:
##### 用jdk8之后新增的日期对象,instant。设置时间戳,然后在把instant对象转化为字符串对象,在把时分秒给截取下来。
### 注意事项:
####……
刷题记录(头秃第n天)
摘要:解题思路:约瑟夫环注意事项:计数器设置与p的位置关系参考代码:#include<string.h>#include<stdio.h>#include<stdlib.h>typedef struct l……
编写题解 1128: C语言训练-排序问题<1>
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[4]; for(int i=0;i<4;i++……