题解列表

筛选

C语言训练-求PI*(python版)

摘要:解题思路:注意事项:参考代码:import mathsum = 0i = 1k = 0n = 1while math.fabs(n) >= 10**(-6):    #控制循环    sum += n……

左孩子右兄弟 递归

摘要:参考代码:import java.util.*; public class Main {     public static Map<Integer, List<Integer>> nodeT……

编写题解 1209: 密码截获

摘要:解题思路:注意事项:参考代码:while True:     try:         st=input()         ts=st[::-1]         s=[]   &n

用筛法求之N内的素数

摘要:解题思路:注意事项:参考代码://用筛法求之N内的素数#include<stdio.h>int main(){ int n; int a[1001]; scanf("%d",&n); for(int ……

题目 1093: 字符逆序

摘要:解题思路:①将输入的字符串生成列表②用reverse进行翻转③输出字符注意事项:输出为一行参考代码:li=list(str(input()))if len(li)<=100: li.reverse()……

拓扑排序qaqaq

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> //就是一个字符串关系型的拓扑排序  using namespace std; struct node{ int……
优质题解

3种方法+从简到繁 完成 排列

摘要:解题思路:1.暴力法:使用一个数组存输入的4个数,每次去掉其中一个;然后对于剩余3个数,使用2个for循环选择前2个, 最后一个则等于6-i-j-k (考虑互不相等,i、j、k 最大为 3、2、1 ……