题解列表
字符串的查找删除 (C语言代码)
摘要:#include <stdio.h>#include <stdlib.h>#include <string.h>char *remove_sub(char *s, char *sub){ int le……
蓝桥杯算法提高VIP-Pascal三角 (C语言代码)代码千万行,注释第一行
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int n,t;
scanf("%d",&n);
t=n;
in……
特殊排序 (C++代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
#include<algorithm>
using namespace std;
bool cmp(int x,int y)……
数列排序 (C++代码)
摘要:/*解题思路:从第二位数开始n=2,...,9与起始数分别比较:
<1>小于起始数:1.将线性表index=0~n分别向右移1位
2.再将此……
蓝桥杯算法训练VIP-蜜蜂飞舞 (C++代码)
摘要:解题思路:注意事项:参考代码:#include<cstdio>#include<iostream>#include<cmath>using namespace std;int main(){ int ……
蓝桥杯算法提高VIP-矩阵翻转 (C++代码)
摘要:解题思路:数论+贪心法:注意事项:参考代码:#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;……
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言描述(最简单题解,不用自定义函数,没有之一)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
#include<math.h>
int main()
{
int n,i,m;
double a,b,su……
蓝桥杯基础练习VIP-芯片测试 (Java代码)
摘要:解题思路:根据好芯片比坏芯片多,求解注意事项:参考代码://参考:https://blog.dotcpp.com/a/5458
import java.util.Scanner;
public c……
【金明的预算方案】 (C语言代码)
摘要:解题思路:我这算是瞎猫碰到死耗子了吧。。。注意事项:本来就是试一试竟然对了。。。参考代码#include<stdio.h>int main(){ int max(int a,int b); int i……