题解列表
蛇形矩阵(Java代码)简单易理解
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) ……
排队买票 STL全排列
摘要:```cpp
#include
#include
#include
using namespace std;
int queue[15];
int num[15];
int m,n,k;……
Hifipsysta-1691-数据结构-KMP字符串模式匹配算法实现(C++代码)
摘要:```cpp
#include
using namespace std;
const int MXN=1e2+10;
int nextTable[MXN];
int getNextTa……
编写题解 1011: [编程入门]最大公约数与最小公倍数--简单解法
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n; scanf("%d %d",&m,&n); int min = (m<n)?m:n; int ……
编写题解 1027: [编程入门]自定义函数处理最大公约数与最小公倍数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>void han(int m,int n){ int min = (m<n)?m:n; int max = (m>n)?m:n; ……
编写题解 1028: [编程入门]自定义函数求一元二次方程--借鉴大佬的
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;float delta_func(float a,float b……