题解列表

筛选

蓝桥杯算法训练VIP-字串统计(简单直白)python

摘要:解题思路:从第一位开始遍历,一个pase一组进行对比,对比成功(即出现重复子串),count+1。遍历至最后一位break,同时计入count数、本命子串位置及长度,方便后续对比输出。注意事项:参考代……

1148: C语言训练-计算1977!*

摘要:解题思路:    利用数组进行大数计算注意事项:    没事的,背下来就好了!!!参考代码:#include<iostream>using namespace std;int main(){    i……

python 2803: 整数的个数

摘要:参考代码:k = int(input()) arr = map(int, input().split()) one, five, ten = 0, 0, 0 for i in arr:    ……

1159: 偶数求和(还不错)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int n,m;    int num[100];    num……

求分数序列和

摘要:解题思路:斐波那契数列n-2项/n-1项目注意事项:输出格式参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin……

计算分数加减表达式的值

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; float s=0.0; cin>>n; fl……

1160: 出圈(好东西哈)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>                //memset()必备using namespace std;in……

表达式括号匹配:c++

摘要:#### 原题链接 [题目 3071: 表达式括号匹配(stack)](https://www.dotcpp.com/oj/problem3071.html?sid=15741963&lang=1#……