题解列表

筛选

[编程入门]链表合并

摘要:# 链表合并 ```c++ #include #include #include #include using namespace std; struct linknode ……

简化abc关系,找到集中遍历的单一对象

摘要:解题思路:1.简化abc关系,找到集中遍历的单一对象:转化表达的b2.用整数做卡点区分循环,注意b的值是求余,筛选却要用求模3.注意a的范围限制。有一个隐藏点需要验证,即如果a=14的临界,其实不满足……

Sn的公式求和

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int a[101];int main(){    int ……

无聊的星期五

摘要:while True:    x, y = list(map(int, input().split()))    if x == 0 and y == 0: &……

数组回文串

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string.h>int main() { char……

向量点积计算

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i,n,a[n],b[n],s,sum=0;  &nbs……