题解列表

筛选

数据结构-直接插入排序

摘要:解题思路:关键是理解好j--和j+1当时所代表的含义注意事项:参考代码:import java.util.Scanner;public class Main2 {    public static v……

皮亚诺曲线距离python

摘要:解题思路:借鉴了https://www.cnblogs.com/EchoZQN/p/14829144.html的做法注意事项:参考代码:k = int(input())x1,y1 = map(int,……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; long int min = 1000000, max = 0; scanf("%d", &n);……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char str[1001];    gets(str);    st……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void CompactIntegers(int a[],int k,int n){    int i;    for (i = k; ……