题解列表
信息学奥赛一本通T1456-图书管理(Java)
摘要: import java.util.*;
public class Main {
public static void main(String[] arg……
成绩排序(多多指教)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct students{char name[101];int age;i……
蓝桥杯2013年第四届真题-横向打印二叉树 详解
摘要:#### 解题思路:
1. 建立二叉排序树
2. 逆中序遍历二叉排序树
#### 注意事项:
1. 输出格式
```
.............|-25-|
........……
1815: 蓝桥杯2014年第五届真题-排列序数
摘要:解题思路:思路1:暴力排列,运用STL中的next_permutation函数#include <cstdio>
#include <algorithm>
#include <iostream>……
优质题解
题解 1739: 成绩排序(C语言)详细解释
摘要:解题思路: 首先通过结构体来存储这些数据struct student{
char name[200];
int age;
int score;
}stu[1005]; ……
1197: 发工资咯
摘要:#include<iostream>
using namespace std;
int main(){
int a[]={100,50,10,5,2,1};
int n,mon……