运用插空排序解题1117:K-进制数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int fun(int a,int b)//a的b次方{ int i,sum=1; for(i=0;i<b;i++)sum…… 题解列表 2022年03月23日 0 点赞 0 评论 365 浏览 评分:0.0
蓝桥杯基础练习VIP-矩形面积交 摘要:```cpp #include using namespace std; int main() { double d1x,d1y,d2x,d2y,d3x,d3y,d4x,d4y,s=…… 题解列表 2022年03月23日 0 点赞 0 评论 407 浏览 评分:0.0
字符串输入输出函数 摘要:```cpp #include using namespace std; double GetReal(double real){ cout…… 题解列表 2022年03月23日 0 点赞 0 评论 352 浏览 评分:0.0
蓝桥杯2018年第九届真题-递增三元组 暴力解法加上了一些简单优化 思路清晰 摘要:``` import java.util.Scanner; public class DemoD { public static void main(String[] args) { S…… 题解列表 2022年03月23日 0 点赞 0 评论 580 浏览 评分:0.0
1438: Benjam1n_蓝桥杯2013年第四届真题-大臣的旅费(C++代码) 摘要:解题思路:链式前向星+深搜参考代码:#include<iostream> #include<cstring> using namespace std; const int N = 100010 …… 题解列表 2022年03月23日 0 点赞 0 评论 305 浏览 评分:0.0
传染病控制Python题解 摘要:代码参考https://blog.csdn.net/qq_47780707/article/details/122612528n,p=map(int,input().split()) #链接表的第一…… 题解列表 2022年03月23日 0 点赞 0 评论 457 浏览 评分:0.0
核桃的数量 摘要:解题思路:题目意思就是求他们的最小公倍数注意事项:参考代码:#include<stdio.h>int main(){ int i=1,m,n,k; scanf("%d%d%d",&m,&n…… 题解列表 2022年03月24日 0 点赞 0 评论 472 浏览 评分:0.0
两种皇后那就分两次dfs啊!!! 摘要:package practise; import java.io.BufferedReader; import java.io.InputStreamReader; import java.…… 题解列表 2022年03月24日 0 点赞 0 评论 283 浏览 评分:0.0
题解 1716: 数据结构-快速排序 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void QuickSort(int a[],int left,int right) { int x = a[le…… 题解列表 2022年03月24日 0 点赞 0 评论 396 浏览 评分:0.0