题解列表
题解 2845: 求10000以内n的阶乘
摘要:```c
#include
int main()
{
int a[100000] = { 0 };
a[1] = 1;
int len = 1;//len代表最高位
int n;……
以自己理解写的,比较简单
摘要:解题思路:注意事项:尽量在b[y][x] = a[y][x]时把a[x][y]改掉参考代码:#include<stdio.h>int main(){ int x, y; int a[3……
2939: 最匹配的矩阵(超详解)
摘要:```c
#include
#include
#include
#include
// 计算矩阵A的子矩阵与矩阵B的差值绝对和
int calculate_diff(int **A……
题解 2944: 图像旋转翻转变换
摘要:```c
#include
#include
#define MAX_SIZE 100
void rotate90Clockwise(int mat[MAX_SIZE][MAX_S……
题解 2945: 素数对
摘要:```c
#include
#include
// 函数用于检查一个数是否是素数
int is_prime(int num) {
if (num ……
编写题解 3007: 收费
摘要:解题思路:注意事项:不要用int,用double参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double a; ……
题解 1050: [编程入门]结构体之成绩记录(超超超级简单)
摘要:```c
#include
#include
struct student
{
char shuju[20];
char name[20];
int chinese;
int ……
直接插入排序,折半插入排序、希尔排序
摘要:直接插入排序#include <stdio.h>
int main() {
int a[10], key;
// 输入已排序的数组
for (int i = 0……