2163二分法查找最接近的元素 摘要:解题思路:注意事项:在比较的时候需要注意取绝对值(abs函数)比较,不然会出错。参考代码:#include <bits/stdc++.h>using namespace std;int f…… 题解列表 2024年12月28日 0 点赞 0 评论 15 浏览 评分:10.0
佳肴荟萃很快就来一句 摘要:加油了解题思路:注意从后面逐个移动注意事项:参考代码:#include<stdio.h>int main(void){ int a[10]; &nbs…… 题解列表 2024年12月28日 0 点赞 0 评论 19 浏览 评分:0.0
用冒泡排序的方法解决 摘要:解题思路: 通过交换相邻元素的方式将元素依次向前移动一位,实现将数组的后 m个元素循环前移到数组前面。注意事项: 注意输入的m值不能超过数组的长度,否则可能会出现越…… 题解列表 2024年12月28日 1 点赞 0 评论 10 浏览 评分:10.0
自定义函数处理素数 摘要:#include<stdio.h>intjudge(intn);intmain(void){&nbs…… 题解列表 2024年12月28日 0 点赞 0 评论 17 浏览 评分:0.0
多余的string函数 摘要:解题思路:#include<stdio.h>#include<string.h>intmain(void){&n…… 题解列表 2024年12月28日 0 点赞 0 评论 14 浏览 评分:0.0
先转化为小写 摘要:#include<stdio.h>#include<ctype.h>intmain(void){ch…… 题解列表 2024年12月28日 0 点赞 0 评论 3 浏览 评分:0.0
坐标排序(构建对象去处理坐标数据) 摘要:解题思路:- 既然用的C++,那就不用结构体去处理了,构建一个对象去处理,顺便使用构造函数去处理输入- 将对象存入vector容器,再去排序,排序用的就是sort,想看手写快排的话,那放在这下…… 题解列表 2024年12月28日 0 点赞 0 评论 4 浏览 评分:0.0