题解列表
身份证号码升级-题解(C++代码)
摘要:解题思路:字符串注意事项:字符串和数字的转换参考代码:#include <iostream>
#include <cstring>
using namespace std;
char s1[20……
编写题解 2263: 蓝桥杯2015年第六届真题-饮料换购 <笔记>
摘要:#include<iostream>
using namespace std;
int fun(int n) {
int sum = n;
int a, b;
while (1) {……
蓝桥杯2013年第四届真题-核桃的数量-题解(C++代码)
摘要:解题思路:找到三个数的最小公约数即可注意事项:公约数从1开始找参考代码:#include<bits/stdc++.h>
using namespace std;
int main(){
……
蓝桥杯基础练习VIP-报时助手
摘要: #include
using namespace std;
string nums[]={"zero","one","two","three","four","five",……
运用string巧妙解决
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string s; while(cin>>s) { ……
题解 1461: FJ的字符串(递归)
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<string>
using namespace std;
string s;
char a[28]="AB……
Huffuman树(c++)易懂
摘要:```cpp
#include
using namespace std;
int main()
{
int n,cost=0;
int a[1001];
cin>>n;
for……
蓝桥杯基础练习VIP-完美的代价
摘要: #include
using namespace std;
int n;
string s;
int main() {
c……
蓝桥杯基础练习VIP-字符串对比(简洁版)
摘要:```cpp
#include
using namespace std;
string a,b;
int panduan(string a,string b)
{
if(a.size()……