题解列表
[编程入门]选择排序-题解(Java代码)
摘要:import java.util.Scanner;
public class Main {
public static void main(String[] args) {
……
二级C语言-阶乘数列-题解(Java代码)
摘要:public class Main {
public static void main(String args[]) {
double sum = 0;
……
二叉树遍历-题解(C语言代码)
摘要:```c
#include
#include
#include
typedef struct node{
char data;
struct node* left;
struct ……
蓝桥杯算法提高-c++_ch06_02-题解(C语言代码)
摘要: #include
int main(void)
{
int i = 0, m = 0, n = 0, m1 = 0, n1 = 0;
……
C语言训练-求PI*-题解(C++代码)
摘要:```cpp
#include
using namespace std;
int main()
{
double temp=1;//
double sum=0;
int i=1……
Manchester-【小明A+B-题解(C语言代码)】
摘要:#### 解题思路(字符串思路):
解读题目得到原始题意:
输入两个非负整数A,B 求A+B 的和然后输出结果的最后两位数的值。
如何输出结果的最后两位的值:……
倒数第二-题解(C语言代码)
摘要: #include "stdio.h"
int main(){
int c;
scanf("%d",&c);
while(c--){
……
蓝桥杯算法训练-删除数组零元素-题解(C++代码),有链表和数组的做法
摘要:```cpp
#include
using namespace std;
typedef struct Node{
int data;
struct Node *next;
……
蓝桥杯2019年第十届真题-等差数列-题解(C++代码)
摘要:```cpp
用数列最大值(max)减去最小值(min)除以数列中的最小差值(minc)
#include
#include
#include
using namespace ……