题解列表
1592: 蓝桥杯算法训练VIP-FBI树
摘要:[https://www.dotcpp.com/oj/problem1592.html](https://www.dotcpp.com/oj/problem1592.html)
- 思路
……
蛇行矩阵--根据数字规律
摘要:解题思路:注意事项:参考代码:n=int(input())list=list(range(1,int((n*n+n)/2)+1))for j in range(1,n+1): for i in ……
队列操作(链队列解法)
摘要: #include
#include
typedef struct linknode{
int data;
struct linknode *next……
DFS啊啊啊啊啊啊!!!
摘要:```cpp
#include
using namespace std;
int n;
int vis[100][100] = {0};
char arr[100][100];
int b……
小白单纯记录自己题解
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int temp,j,i,m,n,a[1000],b[1000]……
编写题解 1106: 奖学金
摘要:解题思路:结构体由总分,学号,语数英三部分组成,然后按照代码所示的嵌套条件进行排序。注意事项:参考代码:#include<stdio.h>typedef struct Student{ int num……