不使用数组查找5个数字中最大和最小的程序

问题描述 投票:0回答:17

昨天我去面试,被要求创建一个程序,在不使用数组的情况下找到 5 个数字中的最大和最小。

我知道如何使用数组创建程序。

int largestNumber;
int smallestNumber;
int numbers[n];

largestNumber=numbers[0];
smallestNumber=numbers[0];
for (i=0 ; i<n; i++)
{
if (numbers[i] > largestNumber) 
{
largest = numbers[i];
}
if (numbers[i] < smallestNumber) 
{
smallestNumber= numbers[i];
}
}

但是如何在不使用数组的情况下创建它。有什么帮助吗??

c++ c++11
17个回答
19
投票
#include <algorithm>
#include <iostream>

template <typename T>
inline const T&
max_of(const T& a, const T& b) {
    return std::max(a, b);
}

template <typename T, typename ...Args>
inline const T&
max_of(const T& a, const T& b, const Args& ...args) {
    return max_of(std::max(a, b), args...);
}

int main() {
    std::cout << max_of(1, 2, 3, 4, 5) << std::endl;
    // Or just use the std library:
    std::cout << std::max({1, 2, 3, 4, 5}) << std::endl;
    return 0;
}

10
投票

适用于从标准输入中获取的任意数量的数字:

#include <algorithm>
#include <iterator>
#include <iostream>

int main()
{
    std::istream_iterator<int> it_begin(std::cin), it_end;
    auto p = std::minmax_element(it_begin, it_end);
    if (p.first != it_end)
        std::cout << "min: " << *p.first << " max: " << *p.second;
}

免责声明:
从技术上讲,这并不需要按照 C++ 标准工作。

minmax_element
所需的最小迭代器类别是
ForwardIterator
,而流迭代器则不是。一旦输入迭代器被解除引用或递增,就不再保证其副本可解除引用或与其他迭代器进行比较。它可以在我的机器上运行TM。 :)


5
投票

你可以这样做:

int min_num = INT_MAX;  //  2^31-1
int max_num = INT_MIN;  // -2^31
int input;
while (!std::cin.eof()) {
    std::cin >> input;
    min_num = min(input, min_num);
    max_num = max(input, max_num);
}
cout << "min: " << min_num; 
cout << "max: " << max_num;

它从标准输入读取数字,直到 eof(它不关心你有多少个 - 5 或 1,000,000)。


0
投票

这不是一个有效的答案,但它仍然有效

int a,b,c,d,e,largest;
if ((a>b) and (a>c) and (a>d) and (a>e))
{    
    largest=a;
}
else if ((b>a) and (b>c) and (b>d) and (b>e))
{    
    largest=b;
}
else if ((c>a) and (c>a) and (c>d) and (c>e))
{    
    largest=c;
}
else if ((d>a) and (d>c) and (d>a) and (d>e))
{    
    largest=d;
}
else 
{
largest=e;
}

您可以使用类似的逻辑来找到最小值


0
投票

让 max 保存 5 个数字中的最大值。将第一个数字分配给 max。取第二个数字并将其与 max 进行比较,如果第二个数字大于 max,则将其分配给 max,否则不执行任何操作。接下来取第三个数字并将其与 max 进行比较,如果第三个数字大于 max 将其分配给 max 否则不执行任何操作。对第四个和第五个数字执行相同的操作。最后 max 将保存 5 个数字中的最大值。


0
投票

例如5个连续的数字

int largestNumber;
int smallestNumber;
int number;
std::cin>>number;
largestNumber = number;
smallestNumber = number;
for (i=0 ; i<5; i++)
{
   std::cin>>number;
   if (number > largestNumber) 
   {
     largest = number;
   }
   if (numbers < smallestNumber) 
   {
     smallestNumber= number;
   }
}

0
投票

您可以使用列表(或向量),它不是数组:

#include<list>
#include<algorithm>
#include<iostream>
using namespace std;
int main()
{
    list<int> l;
    l.push_back(3); 
    l.push_back(9); 
    l.push_back(30);    
    l.push_back(0); 
    l.push_back(5); 

    list<int>::iterator it_max = max_element(l.begin(), l.end());
    list<int>::iterator it_min = min_element(l.begin(), l.end());

    cout << "Max: " << *it_max << endl;
    cout << "Min: " << *it_min << endl;
}

0
投票

>
<
是传递属性,所以如果
a > b
b > c
,那么
a > c
。所以你可以

int a=10, b=6, c=4, d=21, e=4;

int maxNum = a;
int maxNum = max(b, maxNum);
int maxNum = max(c, maxNum);
int maxNum = max(d, maxNum);
int maxNum = max(e, maxNum);

0
投票

使用排序网络!

#include <iostream>
#include <utility>

int main()
{
    int a, b, c, d, e;
    std::cin >> a >> b >> c >> d >> e;

    if (a < b) std::swap(a, b);
    if (d < e) std::swap(d, e);
    if (c < e) std::swap(c, e);
    if (c < d) std::swap(c, d);
    if (b < e) std::swap(b, e);
    if (a < d) std::swap(a, d);
    if (a < c) std::swap(a, c);
    if (b < d) std::swap(b, d);
    if (b < c) std::swap(b, c);

    std::cout << "largest = " << a << '\n';
    std::cout << "smallest = " << e << '\n';
}

0
投票

如果您想让事情变得简单,那么这是我的解决方案。

它适用于从标准输入中获取的任意数量的整数。它也适用于负整数。完成后输入 end。

#include <iostream>

int main()
{
int max,min,input;
std::cout<<"Enter the number: ";
std::cin>>input;
min=max=input;

while(std::cin>>input){
    if(input>max) max=input;
    if(input<min) min=input;
    std::cout<<"Enter the number: ";
}
std::cout<<"\nMax: "<<max<<"\nMin: "<<min;
}

0
投票
void main()
{
int a,b,c,d,e,max;
    max=a;
    if(b/max)
        max=b;
    if(c/max)
        max=c;
    if(d/max)
        max=d;
    if(e/max)
        max=e;
    cout<<"Maximum is"<<max;
}

0
投票

这就是我所做的,没有使用数组。这是返回最高 5 分的方法。

double findHighest(double score1, double score2, double score3, double score4, double score5)
 {
   double highest = score1;
   if (score2 > score1 && score2 > score3 && score2 > score4 && score2 > score5)
      highest = score2;
   if(score3 > score1 && score3 > score2 && score3 > score4 && score3 > score5)
      highest = score3;
   if(score4 > score1 && score4 > score2 && score4 > score3 && score4 > score5)
      highest = score4;
   if (score5 > score1 && score5 > score2 && score5 > score3 && score5 > score4)
      highest = score5;
   return highest;
 }

数组的效率会高得多,但我必须在不使用数组的情况下完成作业。


0
投票
int findMin(int t1, int t2, int t3, int t4, int t5)
{
    int min1, min2, min3;

    min1 = std::min(t1, t2);
    min2 = std::min(t3, t4);
    min3 = std::min(min1, min2);
    return std::min(min3, t5);
}

int findMax(int t1, int t2, int t3, int t4, int t5)
{
    int max1, max2, max3;

    max1 = std::max(t1, t2);
    max2 = std::max(t3, t4);
    max3 = std::max(max1, max2);
    return std::max(max3, t5);
}

这些函数非常混乱,但很容易理解,因此很容易记住,并且它只使用简单的 min 和 max 方法,最适合 2 个值。


0
投票
int findMin(int t1, int t2, int t3, int t4, int t5)
{
    int min;

    min = t1;
    if (t2 < min)
        min = t2;
    if (t3 < min)
        min = t3;
    if (t4 < min)
        min = t4;
    if (t5 < min)
        min = t5;

    return min;
}
int findMax(int t1, int t2, int t3, int t4, int t5)
{
    int max;

    max = t1;
    if (t2 > max)
        max = t2;
    if (t3 > max)
        max = t3;
    if (t4 > max)
        max = t4;
    if (t5 > max)
        max = t5;

    return max;
}

0
投票

这是我的实现:简单而简短

#include <iostream>
#include <cstdio>
using namespace std;


int max_of_five(int a, int b, int c, int d,int e){
    int large= max(max(a, b), max(c,d));
    return max(large,e);

}

int min_of_five(int a,int b,int c, int d,int e){
    int small=min(min(a,b),min(c,d));
    return min(small,e);
}


int main() {
    int a, b, c, d,e;

    scanf("%d %d %d %d %d", &a, &b, &c, &d,&e);
    int ans = max_of_five(a, b, c, d, e);
    int ans1=min_of_five(a,b,c,d,e);
    printf("Max:\t%d\n", ans);
    printf("Min:\t%d", ans1);

    return 0;
}

0
投票
#include<iostream>

using namespace std;

int main()
{

    int largestNumber;
    int smallestNumber;
    int temp1;
    cin >> temp1;
    largestNumber = temp1;
    smallestNumber = temp1;

    for (int i = 0; i < 5; i++)
    {
        int temp;
        cin >> temp;
        
        for (int i = 0; i < 3; i++)
        {
            if (temp > largestNumber)
            {
                largestNumber = temp;
            }
            if (temp < smallestNumber)
            {
                smallestNumber = temp;
            }
        }
    }
    cout << "smallest number is " << smallestNumber<<endl;
    cout << "lagest   number   is " << largestNumber<<endl;


    system("pause");
    return 0;
}

0
投票

通过额外的支持信息可以改进您的答案。请进行编辑以添加更多详细信息,例如引文或文档,以便其他人可以确认您的答案是正确的。您可以在帮助中心找到有关如何写出好的答案的更多信息。 – 社区 机器人 2021 年 12 月 31 日 1:50 您正在运行 0-1-2-3-4 的外循环,这意味着 5 个数字,加上第一个条目使其成为 6 个数字。修复号码。并且内循环运行相同的操作 3 次,您只需要该操作一次。所以删除循环。 – 耶尔马兹·杜尔马兹 2022 年 1 月 1 日 11:40强文字

© www.soinside.com 2019 - 2024. All rights reserved.