题解列表

筛选

汉诺塔-递归问题

摘要: #include #include using namespace std; stack s[3]; void move(int x,int y){ ……

1196: 去掉空格--容易理解

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void fun(char a[]){  int l=strlen(a); for(int i;……

高精度加法

摘要:解题思路:将输入的两个字符串通过split("")转化为String数组,通过for循环逆序存入int类型数组中,然后遍历将二者相加组成c数组注意事项:确保数组长度一致,否则遍历的时候可能会数组越界异……

易理解的计算与求和

摘要:解题思路:注意事项:累计高度加到n-1;为了便于计算全部2*之后-初始高度*1;注意幂次表达用cmath的pow表示参考代码:#include<cstdio>#include<iostream>#in……

c++ 找规律分奇数偶数

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int a[10000],n; ci……

简单的递归

摘要:解题思路:注意事项:注意递归的出口 和递推公式的条件参考代码:#include<cstdio>#include<iostream>#include<cstring>#include<cmath>usi……

java--study||O.o

摘要:参考代码: import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; ……