鱼C论坛

 找回密码
 立即注册
查看: 851|回复: 2

[已解决]C++使用 while and for

[复制链接]
发表于 2020-11-19 22:39:53 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
Array Merging

Overview
Write a program to merge two arrays
Directions
For example, consider two arrays A and B.
A = {10, 25, 35, 40, 55}
B = {15, 30, 5, 20, 45, 65}
The merged array should be another array C with elements {5, 10, 15, 20, 25, 30, 35, 40, 45, 55,  65}. The resultant merged array should contain all the elements of A and B in sorted order. This doesn’t mean that you can two copy two arrays to the third array and sort the resultant array. However, you have to merge the contents of the two arrays by taking individual values of the two arrays one by one and insert it into the resultant array in the appropriate position, so that it becomes sorted right after merging.
最佳答案
2020-11-20 17:25:35
#include <stdio.h>

int main(void)
{
        int A[] = {10, 25, 35, 40, 55} , B[] = {15, 30, 5, 20, 45, 65}      ;
        int C[100] , a , b , c , i , j  , k  , m                            ;
        for(a = sizeof(A) / 4 , c = 0 ; c < a ; c ++) C[c] = A[c]           ;
        for(b = sizeof(B) / 4 , i = 0 ; i < b ; i ++) {
                for(j = 0 ; j < c && C[j] <= B[i] ; j ++)                   ;
                if(j < c) {
                        for(k = c ; k > j ; k --) C[k] = C[k - 1]           ;
                        C[j] = B[i]                                         ;
                } else {
                        C[c] = B[i]                                         ;
                }
                c ++                                                        ;
        }                        
        printf("%d" , C[0])                                                 ;
        for(k = 1 ; k < c ; k ++) printf("\t%d" , C[k])                     ;
        printf("\n")                                                        ;
}
        编译、运行实况
D:\0002.Exercise\C>g++ -o x x.c

D:\0002.Exercise\C>x
5       10      15      20      25      30      35      40      45      55
65

D:\0002.Exercise\C>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-19 23:43:26 | 显示全部楼层
#include <stdio.h>

int main()
{
        int i, j, k = 0,temp, C[11];
        int A[5] = {10,25,35,40,55 };
        int B[6] = {15,30,5,20,45,65 };
        
        for (i = 0;i < 5;i++)
        {
                C[k] = A[i];
                k++;
        }
        for (j = 0;j < 6;j++)
        {
                C[k] = B[j];
                k++;
        }

        for (j = 0;j < 10;j++)
                for (k = 0;k < 9;k++)
                        if (C[k] > C[k + 1]) // 由小到大排序,若由大到小排序,改为小于号即可
                        {
                                temp = C[k];
                                C[k] = C[k + 1];
                                C[k + 1] = temp;
                        }
        
        for(i = 0;i < 11;i++)
            printf("%d ", C[i]);
        printf("\n");
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-11-20 17:25:35 | 显示全部楼层    本楼为最佳答案   
#include <stdio.h>

int main(void)
{
        int A[] = {10, 25, 35, 40, 55} , B[] = {15, 30, 5, 20, 45, 65}      ;
        int C[100] , a , b , c , i , j  , k  , m                            ;
        for(a = sizeof(A) / 4 , c = 0 ; c < a ; c ++) C[c] = A[c]           ;
        for(b = sizeof(B) / 4 , i = 0 ; i < b ; i ++) {
                for(j = 0 ; j < c && C[j] <= B[i] ; j ++)                   ;
                if(j < c) {
                        for(k = c ; k > j ; k --) C[k] = C[k - 1]           ;
                        C[j] = B[i]                                         ;
                } else {
                        C[c] = B[i]                                         ;
                }
                c ++                                                        ;
        }                        
        printf("%d" , C[0])                                                 ;
        for(k = 1 ; k < c ; k ++) printf("\t%d" , C[k])                     ;
        printf("\n")                                                        ;
}
        编译、运行实况
D:\0002.Exercise\C>g++ -o x x.c

D:\0002.Exercise\C>x
5       10      15      20      25      30      35      40      45      55
65

D:\0002.Exercise\C>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 13:49

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表