题解列表
编写题解 1052: [编程入门]链表合并
摘要:解题思路:注意事项:参考代码://// Created by ch'li'sen on 2022/3/8.//#include<iostream>#include "algorithm……
1518: 蓝桥杯算法提高VIP-寻找三位数
摘要:解题思路:注意事项:参考代码:st=[str(i) for i in range(1,10)]
ls=[]
for i in st:
z=st[:]
z.remove(i)
……
1512: 蓝桥杯算法提高VIP-多项式输出
摘要:n=int(input())
a=list(map(int,input().split()))
l=len(a)
b=[]
for i in range(len(a)):
b.app……
我是废物!!!!!!!!!!!!!!
摘要:
```cpp
#include
using namespace std;
int n;
const long long L = 100002;
int arr[L] = {0……
1697: 数据结构-二叉链表存储的二叉树
摘要:题目源: [https://www.dotcpp.com/oj/problem1697.html](https://www.dotcpp.com/oj/problem1697.html)
代码都……
猴子吃桃问题,C语言
摘要:解题思路:注意事项:参考代码:#include <stdio.h>/*猴子吃桃问题。猴子第一天摘下若干个桃子,当即吃了一半,还不过瘾,又多吃了一个。 第二天早上又将剩下的桃子吃掉一半,又多吃一个。 以……
二级C语言-进制转换(数组)
摘要:解题思路:不断%8将值放到数组中,最后逆序输出注意事项:if的取值范围,应该是小于8而不是小于等于8参考代码:#include<stdio.h>int main(){ int a[100],n,……
C语言,不用库函数,标注较为清晰,冒泡排序
摘要:解题思路:注意事项:参考代码:#include<stdio.h>//冒泡排序方法int main(){ int i,a[10]; for(i=0;i<3;i++)//现在数组里输入三个数 { sca……