题解列表

筛选

亲密数(Java代码)

摘要:参考代码:import java.util.Scanner; public class 亲密数 { public static void main(String[] args) { ……

反置数(Java代码)

摘要:解题思路:使用StringBuilder的reverse()方法反转字符串参考代码:import java.util.Scanner; public class 反置数01 { publ……

线段树题解(简单理解)

摘要:## 线段树 **一看到单点更改和区间查询就知道用线段树了** 普通线段树模板: ```c++ int num[100005]; struct node { int l,r,w;//l……

2908: 白细胞计数

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

正常血压(简单明晰)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct record{ int a; int b;}press[100];//血压int main(){     int n;  ……

爬树的甲壳虫——Java

摘要:# 思路 https://blog.csdn.net/qq_44579321/article/details/129465652 (但是它的推导式在最后有点问题) https://www……