直接插入排序普通写法C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,i,j,temp; cin>>n; in…… 题解列表 2024年12月07日 0 点赞 0 评论 73 浏览 评分:0.0
选择排序C++简单排序思路 摘要:解题思路:temp初始化为i,从a[i+1]开始进行更小值比较遍历,将更小值序号存入temp,遍历结束后temp为最小值序号,交换a[i]和a[temp]的值,再进行下一轮比较]]注意事项:参考代码:…… 题解列表 2024年12月07日 0 点赞 0 评论 258 浏览 评分:0.0
不知道,并感觉写的 摘要:解题思路: 回文数组的特性为以数组对称位置的值相等,比如0位和n-1位的值要相等。要么相邻两个数同时加或减 或者 只能一个数加或减。从1可知,同时加减两个数越多(要都是有效步骤),总步骤就能越少.从0…… 题解列表 2024年12月06日 1 点赞 0 评论 42 浏览 评分:0.0
结构体之成绩统计2(小白也能看懂) 摘要:解题思路: 先定义结构体,再for循环给结构体赋值然后定义三个sum分别计算三门科目总分,再通过每门科目总分求每门的平均分定义一个·变量,然后通过for循环确定最高分为多少,然后通过for循环比对…… 题解列表 2024年12月06日 0 点赞 0 评论 259 浏览 评分:0.0
链表数据求和操作 摘要:# 链表数据求和操作 ```c++ #include #include #include #include using namespace std; // 定义链表节点结构 …… 题解列表 2024年12月06日 0 点赞 0 评论 86 浏览 评分:0.0
[编程入门]链表合并 摘要:# 链表合并 ```c++ #include #include #include #include using namespace std; struct linknode …… 题解列表 2024年12月06日 0 点赞 0 评论 193 浏览 评分:0.0
简化abc关系,找到集中遍历的单一对象 摘要:解题思路:1.简化abc关系,找到集中遍历的单一对象:转化表达的b2.用整数做卡点区分循环,注意b的值是求余,筛选却要用求模3.注意a的范围限制。有一个隐藏点需要验证,即如果a=14的临界,其实不满足…… 题解列表 2024年12月06日 0 点赞 0 评论 50 浏览 评分:0.0
Sn的公式求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int a[101];int main(){ int n,sum=0; scanf("%d"…… 题解列表 2024年12月06日 0 点赞 0 评论 296 浏览 评分:0.0
无聊的星期五 摘要:while True: x, y = list(map(int, input().split())) if x == 0 and y == 0: break print…… 题解列表 2024年12月06日 0 点赞 0 评论 81 浏览 评分:0.0
函数求解最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int gcd(int m, int n);int lcd(int m, int n);int main(void){ int m…… 题解列表 2024年12月06日 0 点赞 0 评论 431 浏览 评分:0.0