数据结构-双向循环链表-题解(Python代码) 摘要:```python l=[] while True: try:(lambda s:(lambda:print(*l),lambda:l.pop(~-s[1]),lambda:l.insert(…… 题解列表 2022年03月22日 0 点赞 0 评论 382 浏览 评分:0.0
while语句解法 摘要:解题思路: 倒推注意事项:第N天相当于它只吃了N-1次,∴while后的条件为N >1参考代码:n = eval(input())x = 1while n>1: x = (x+1)*2 n…… 题解列表 2022年03月22日 0 点赞 0 评论 401 浏览 评分:0.0
蓝桥杯算法提高VIP-和最大子序列python解法 摘要: n = int(input()) li = list(map(int,input().split())) max_val = 0 #max_val表示子序列和的最大值…… 题解列表 2022年03月22日 0 点赞 1 评论 233 浏览 评分:0.0
混子(为什么才25%??dp有的都30+) 摘要:#include #include using namespace std; string a; char b[27]; int main(){ cin>>a; for(int i…… 题解列表 2022年03月22日 0 点赞 0 评论 409 浏览 评分:0.0
顺序栈---基本方法 摘要:#include<stdio.h> #include<stdlib.h>#include<malloc.h>#define maxsize 50using namespace std;typedef …… 题解列表 2022年03月22日 0 点赞 0 评论 383 浏览 评分:0.0
1045: [编程入门]自定义函数之整数处理 c++ 摘要:解题思路:思路普通,直白,易理解,新手做法。(1)构建两个数组,赋相同值。(2)通过双循环,b数组中的数依次与a数组的每一个数比较大小,通过sum记录值,达到9时,b[j]就是最值。交换b[j]与b[…… 题解列表 2022年03月22日 0 点赞 0 评论 417 浏览 评分:0.0
字符串数组做法 摘要:#include<stdio.h>#include<string.h>int main(){ char a[1000]; char b[1000]; char c[1000]; …… 题解列表 2022年03月22日 0 点赞 0 评论 376 浏览 评分:0.0
1510: 蓝桥杯算法提高VIP-士兵排队问题(狗币java + 拓扑) 摘要:[https://www.dotcpp.com/oj/problem1510.html](https://www.dotcpp.com/oj/problem1510.html) - 思路&注意事…… 题解列表 2022年03月22日 0 点赞 0 评论 541 浏览 评分:0.0
1620: 蓝桥杯算法训练VIP-字符串的展开 摘要:step1:先找出有几个'-' strp2:设置初始指针sta=0,while循环一个一个'-'判断,每次循环从sta开始遍历,若找到'-'(只要找到一次'-',处理完后面的步骤就推出循环),更新s…… 题解列表 2022年03月22日 0 点赞 0 评论 459 浏览 评分:0.0
用vector巧解高精度问题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include <vector> using namespace std;vector<int> add(vector <int> …… 题解列表 2022年03月22日 0 点赞 0 评论 361 浏览 评分:0.0