题解列表
C++繁琐,还是自己完整实现舒服
摘要:#include<stdio.h>
#include<string.h>
#include<malloc.h>
typedef struct Node{
int arr[100000];
……
python-排列数
摘要:解题思路:python迭代器itertools中permutations函数的应用。注意事项:permutations返回的结果是一个迭代对象。不要先对迭代对象进行转换,然后再输出,例如下面这样A =……
蓝桥杯算法提高VIP-Quadratic Equation
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<cmath>int main(){ double a,b,c,x1,x……
[编程基础]输入输出练习之浮点数专题 标题题解
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a; scanf("%lf",&a); printf("%f\n%0.5lf\n……
编程基础]输入输出练习之输出图案
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c; scanf("%c",&c); printf(" %c\n",c); ……
抄别人的,没读懂题目,收尾交换.中间倒序
摘要:#include <stdio.h>
#include <string.h>
void reverse(char* s, int L, int R){
if(L >= R) return……
简单易懂--邮票组合
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int t = 0; for (int i = 0……