查找特定的值(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, x, i, z; int a[10000]; n = x = z = 0; …… 题解列表 2023年02月16日 0 点赞 0 评论 357 浏览 评分:9.9
查找特定的值(c语言版) 摘要: #include int main() { int a[11000]; int n; int i; int yes; int yes_1=-1; sca…… 题解列表 2022年12月23日 0 点赞 0 评论 499 浏览 评分:9.9
查找特定的值 (Java 代码) 摘要:import java.util.ArrayList; import java.util.Scanner; public class Main { public static void…… 题解列表 2022年12月07日 0 点赞 0 评论 431 浏览 评分:9.9
2901: 查找特定的值 摘要:```cpp #include #include using namespace std; int main() { int m,n,a[10000],i=0; mems…… 题解列表 2022年11月30日 0 点赞 0 评论 371 浏览 评分:8.0
编写题解 2901: 查找特定的值 摘要:解题思路:输入-判断-输出注意事项:第一次出现字符参考代码:#include<stdio.h>int main(){ int n,x,i; scanf("%d\n",&n); int…… 题解列表 2022年10月21日 0 点赞 1 评论 1079 浏览 评分:8.0
2901: 查找特定的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>typedef long long ll;const int N=1e7;ll a[N];using namespace s…… 题解列表 2024年04月20日 0 点赞 0 评论 273 浏览 评分:2.0
查找特定的值解法:数据结构顺序表解法。在一个序列(下标从1开始)中查找一个给定的值,输出第一次出现的位置。 摘要:解题思路:因为最近学习数据结构,就用数据结构的顺序表来解题,基本想法就是使用顺序表的模板来进行增删改查的操作。显然这里只涉及到插入元素和寻找元素两个操作,至于容量扩增的问题在目前这个题里并不需要,因为…… 题解列表 2025年09月02日 0 点赞 0 评论 339 浏览 评分:0.0
全部遍历后再输出-1 摘要:解题思路:注意cout出-1的位置,如果是在if下面,即意味着单次判断无x即直接-1,而实际上应该是全部遍历后再判断。注意事项:参考代码:#include<iostream> using names…… 题解列表 2024年12月10日 0 点赞 0 评论 252 浏览 评分:0.0
Py2901-查找特定的值 摘要:n=int(input())m=list(map(int,input().split()))l=int(in…… 题解列表 2025年12月10日 0 点赞 0 评论 41 浏览 评分:0.0
C语言 指针解决问题 练手 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main ( ){ int n=0 ,x=0 ,record=1 ; int a[10500]={0} ; …… 题解列表 2024年12月09日 0 点赞 0 评论 281 浏览 评分:0.0