算法
YUqiongqlm_
最好的时间是一年前,其次是现在
展开
-
输入一串数字,统计各区间内的个数并输出有哪些数字_C语言_这个思路很厉害
输入数字为1.2,2.9,0.4,0.3,1.3,4.4,1.7,0.4,3.2,0.3,4.9,2.4,3.1,4.4,3.9,0.4,4.2,4.5,4.9,0.9区间为0 ~ 1,1 ~ 2,2 ~ 3,3 ~ 4,4 ~ 5统计上述数字在每个区间有几个,并输出处于该区间内的数字有哪些解法一#include<stdio.h>#include<string>#include<vector>#include<iostream>us原创 2020-11-09 21:26:17 · 1281 阅读 · 0 评论 -
练习7-4 找出不是两个数组共有的元素(C语言!看一眼就懂的代码!)
给定两个整型数组,本题要求找出不是两者共有的元素。输入格式:输入分别在两行中给出两个整型数组,每行先给出正整数N(≤20),随后是N个整数,其间以空格分隔。输出格式:在一行中按照数字给出的顺序输出不是两数组共有的元素,数字间以空格分隔,但行末不得有多余的空格。题目保证至少存在一个这样的数字。同一数字不重复输出。输入样例:10 3 -5 2 8 0 3 5 -15 9 10011 6 4 8 2 6 -5 9 0 100 8 1输出样例:3 5 -15 6 4 1先定义两个数组,存输入的两原创 2020-09-10 18:51:16 · 3323 阅读 · 12 评论 -
深度搜索dfs例题:Oil Deposits
Oil DepositsThe GeoSurvComp geologic survey company is responsible for detecting underground oil deposits.GeoSurvComp works with one large rectangular region of land at a time, and creates a grid that dividesthe land into numerous square plots. It then原创 2020-09-13 13:24:40 · 195 阅读 · 0 评论