是否有更简单,更好的方法来解决这个问题,因为
if else
语句编写一个接收三个整数作为输入的程序,并按递增顺序输出数字 不要使用循环/数组。
#include <stdio.h>
main(){
int no1;
int no2;
int no3;
int sto;
int hi;
int lo;
printf("Enter No. 1: ");
scanf("%d", &no1);
printf("Enter No. 2: ");
scanf("%d", &no2);
printf("Enter No. 3: ");
scanf("%d", &no3);
if (no1>no2) {
sto=no1;
lo=no2;
} else {
sto=no2;
lo=no1;
}
if (sto>no3) {
hi=sto;
if(lo>no3){
sto=lo;
lo=no3;
}else {
sto=no3;
}
}else hi=no3;
printf("LOWEST %d\n", lo);
printf("MIDDLE %d\n", sto);
printf("HIGHEST %d\n", hi);
getch();
}
答案 0 :(得分:19)
if (a > c)
swap(a, c)
if (a > b)
swap(a, b)
//Now the smallest element is the first one. Just check the 2-nd and 3-rd
if (b > c)
swap(b, c);
注意:交换更改两个值 变量
答案 1 :(得分:12)
调用三个变量x
,y
和z
,然后:
if (x > y) swap(x, y);
if (y > z) swap(y, z)
if (x > y) swap(x, y);
写swap
函数留给读者练习。提示:您可能必须使用指针。
答案 2 :(得分:8)
#include <stdio.h>
#define min(a,b) ((a)<(b)?(a):(b))
#define max(a,b) ((a)>(b)?(a):(b))
int main(){
int a, b, c;
int hi;
int lo;
printf("Enter No. 1: ");
scanf("%d", &a);
printf("Enter No. 2: ");
scanf("%d", &b);
printf("Enter No. 3: ");
scanf("%d", &c);
lo = min(min(a, b), c);
hi = max(max(a, b), c);
printf("LOWEST %d\n", lo);
printf("MIDDLE %d\n", a+b+c-lo-hi);
printf("HIGHEST %d\n", hi);
getchar();
}
答案 3 :(得分:5)
提示:如果你有3个数字,a,b和c,min(a,min(b,c))是最小的,max(a,max(b,c))是最大的,并给出最小和最大的数字,应该很容易找到第三个。
答案 4 :(得分:2)
是的,有一种更好的方法,但你需要使用循环和数组。
或许,对于入门课程,您的答案就是他们正在寻找的答案。
有一些方法可以使用for / while(递归,转到等)进行循环。以及在没有索引的情况下获得类似数组的方法(int *ptr = malloc (3 * sizeof(int))
,然后使用*(ptr+index)
索引)。但是,我发现很难想到这就是他们想要的东西。
答案 5 :(得分:2)
要查找3个值的 min , mid 和 max ,您可以使用三元运算符。您可以在代码正文中完成所有工作,也可以将minof3
,midof3
和maxof3
计算分成可重复使用的函数。
在 min 和 max 的情况下,您只需进行3次可能的比较中的2次,然后返回结果的比较。在 mid 的情况下,你也会这样做,但计算3个值的最小值和最大值,然后检查所有3个 min 和 max 为了找到既不是 min 或 max 的值。 (你可以通过将min和max值声明为变量并在那里进行消除来在代码的主体中执行此部分,而无需额外的功能。)
将各个部分组合在一起,您可以执行类似于以下操作的操作,它将前3个参数作为要排序的值(如果未指定所需的值,则使用默认值99, 231, 8
)
#include <stdio.h>
#include <stdlib.h>
/** direct ternary comparison of 3 values */
long minof3 (long a, long b, long c) {
long x = a < b ? a : b,
y = a < c ? a : c;
return x < y ? x : y;
}
long maxof3 (long a, long b, long c) {
long x = a > b ? a : b,
y = a > c ? a : c;
return x > y ? x : y;
}
long midof3 (long a, long b, long c) {
long x = minof3 (a, b, c),
z = maxof3 (a, b, c),
y = a == x ? b : a;
return y == z ? c : y;
}
int main (int argc, char **argv) {
long x = argc > 1 ? strtol (argv[1], NULL, 10) : 99,
y = argc > 2 ? strtol (argv[2], NULL, 10) : 231,
z = argc > 3 ? strtol (argv[3], NULL, 10) : 8;
printf ("\n sorted values : %ld, %ld, %ld\n",
minof3 (x, y, z), midof3 (x, y, z), maxof3 (x, y, z));
return 0;
}
示例使用/输出
$ ./bin/sort3
sorted values : 8, 99, 231
$ ./bin/sort3 -23 -281 1031
sorted values : -281, -23, 1031
(是的,我知道这是一篇旧帖子,但考虑到最近关于隐藏在swap
函数背后的代码的评论,完整的例子是有序的)。
答案 6 :(得分:2)
如果要将值分类到新的外部变量中,则实际上可以进行不带临时对象的交换:
void sort(int a, int b, int c, int *min, int *mid, int *max) {
min = a;
mid = b;
max = c;
if (min > mid) { mid = a; min = b; }
if (mid > max)
{
max = mid;
mid = c;
if (min > mid)
{
mid = min;
min = c;
}
}
}
之所以可行,是因为只有在第二个测试成功的情况下才真正需要最后一个交换测试(否则,它将只是第一个测试的重复,因为我们已经对这些变量进行了排序,所以定义上将失败)。
因此,我们可以跟踪每个原始变量的分配,并避免交换局部变量。
答案 7 :(得分:1)
以下代码仅执行2(最佳情况)至3(最坏情况)条件测试,没有赋值操作或任何其他变量:
void echo(int _1st, int _2nd, int _3rd) { printf("%d %d %d", _1st, _2nd, _3rd); }
void echoFrom(int pivot, int x, int y) {
(pivot < y) ? ((x < y) ? echo(pivot, x, y) : echo(pivot, y, x)) : echo(y, pivot, x);
}
void printSorted(int a, int b, int c) { (a < b) ? echoFrom(a, b, c) : echoFrom(b, a, c); }
基本通话(为简化起见,避免使用scanf()
东西)
int main() {
printSorted(2,3,1); //Output: 1 2 3
}
答案 8 :(得分:0)
一个紧凑的解决方案,没有魔术 swap()
函数,可绕过int
溢出并滥用数组:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv) {
int a = atoi(argv[1]);
int b = atoi(argv[2]);
int c = atoi(argv[3]);
int ab[] = {a, b}, bc[] = {b, c};
int smaller[] = {ab[a > b], bc[b > c]}, larger[] = {ab[a < b], bc[b < c]};
int smallest = smaller[a > c], largest = larger[a < c];
int middle = (a - smallest) + (b - largest) + c;
printf("%d, %d, %d\n", smallest, middle, largest);
return 0;
}
用法
> ./a.out 2147483647 2147483645 2147483646
2147483645, 2147483646, 2147483647
>
答案 9 :(得分:0)
这是一个紧凑且无分支的 Julia 版本。
function sort_asc(a, b, c)
l1, h1 = minmax(a, b)
lo, h2 = minmax(l1, c)
md, hi = minmax(h1, h2)
return lo, md, hi
end
答案 10 :(得分:-1)
我今天试图解决同样的问题。可以在不使用任何临时变量的情况下制作紧凑的代码;循环;库函数,例如swap,sort,max,min等。该代码仅在if语句中使用,并在层次结构中进行连续的更改,直到检查所有可能性为止。
int main()
{
int a, b, c; //User inputs stored in these three variables
int first, second, third; //These three variables will store the sorted numbers in sequence
std::cout<<"Please enter three integers : "; //User input prompt
std::cin>>a>>b>>c;
first = a; //Initially assuming number 'a' is smallest
if (b <= a && b <= c) first = b; //Checking whether b is smallest
if (c <= a && c <= b) first = c; //Checking whether c is smallest
if (((a >= b && a <= c) || (a >= c && a <= b))) second = a; //Checking if a is middle number
if (((b >= a && b <= c) || (b >= c && b <= a))) second = b; //Checking if b is middle number
if (((c >= a && c <= b) || (c >= b && b <= a))) second = c; //Checking if c is middle number
if (a >= b && a >= c) third = a; //Checking if a is the greatest
if (b >= c && b >= a) third = b; //Checking if b is the greatest
if (c >= a && c >= b) third = c; //Checking if c is the greatest
std::cout<<"The numbers in ascending order are : "<<first<<", "<<second<<", "<<third<<std::endl;
}
答案 11 :(得分:-3)
如果我们寻找最少数量的比较作为获得3个元素排序的最有效解决方案,请遵循以下实施
public static void Sort3Elements(int a, int b, int c)
{
if (a <= b && a <= c) //a is lowest here
{
if (b<=c) //a <= b <= c
Console.WriteLine("{0}-{1}-{2}", a, b, c);
else //a <= c <= b
Console.WriteLine("{0}-{1}-{2}", a, c, b);
}
else if (b<=a && b<=c) //b is lowest here
{
if (a <= c) //b <= a <= c
Console.WriteLine("{0}-{1}-{2}", b, a, c);
else //b <= c <= a
Console.WriteLine("{0}-{1}-{2}", b, c, a);
}
else //c is lowest
{
if (a <= b) //c <= a <= b
Console.WriteLine("{0}-{1}-{2}", c, a, b);
else //c <= b <= a
Console.WriteLine("{0}-{1}-{2}", c, b, a);
}
}