题解列表

筛选

Java语言编写的

摘要:解题思路:注意事项:参考代码:import java.awt.*;import java.nio.charset.StandardCharsets;import java.util.Scanner;p……

Sine之舞 C++递归

摘要:```cpp #include #include using namespace std; string s; void dfs(int begin, int num) { ……
优质题解

1975: 蓝桥杯算法提高VIP-扑克排序

摘要:解题思路:                     将J、Q、C、A分别替换成abcd以便排序,将dchs分别替换成1234以便于排序,然后用StringBuilder的对象sb存储替换后的字符串,将……

字符串对比题解

摘要:解题思路:注意事项:参考代码:a=input()b=input()if a==b:    print(2)else:    if len(a)==len(b):        if a.lower()……