题解列表
题目 1434: 蓝桥杯历届试题-回文数字
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>
using namespace std;
int a[7];
int n,n1;
int main(){
……
1041: [编程入门]宏定义之找最大数
摘要:解题思路:用了if语句注意事项:要写两个cout << fixed << setprecision(3) << a << endl;参考代码:#include<bits/stdc++.h>using……
题解 1567: 蓝桥杯算法提高VIP-超级玛丽
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;
public class 超级玛丽 {
/**
* @param args
*/
pub……
蓝桥杯2014年第五届真题-兰顿蚂蚁 c++题解
摘要:解题思路:比较简单的一道题注意事项:注意方向的对应,行数是越向下越大参考代码:#include <iostream>
#include <vector>
#include <string>
……
输出全排列题解dfs+回溯
摘要:1. # MarkDown编辑器基本使用说```java
public class Main{
static int n;
static int[] a;//用来记录已经在排列中的数字
sta……
蓝桥杯2014年第五届真题-兰顿蚂蚁 c++题解
摘要:解题思路:比较简单的一道题注意事项:注意方向的对应,行数是越向下越大参考代码:#include <iostream>
#include <vector>
#include <string>
……
python用map函数只需要三行
摘要:解题思路: 输入数据 处理数据: 用map函数处理字符串,在python3中map函数是返回的迭代器,所以使用list(map())可以将字符串处理成……
链表实现结构体之成绩统计2
摘要:#include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct student { char id[10]; char n……