current position:Home>After entering two indefinite length arrays and sorting them, merge and sort the two arrays again
After entering two indefinite length arrays and sorting them, merge and sort the two arrays again
2022-02-02 18:18:25 【CSDN Q & A】
Why is the last printed merged array 0
Refer to the answer 1:
tail In the previous operation -- 了
Refer to the answer 2:
Refer to the answer 3:
#include <stdio.h>void Sort(int t[], int n){ int i; for ( i = 0; i < n - 1; ++i) { int end = i; int tem = t[end + 1]; while (end >= 0) { if (tem < t[end]) { t[end + 1] = t[end]; end--; } else { break; } } t[end+1] = tem; }}void Printarr(int t[],int n){ int j=0; while(j<n) { printf("%d ",t[j]); j++; } printf("\n");}int main(){ int j=0; int n1,n2; printf(" Please enter an array p1[] size :"); scanf("%d",&n1); int p1[n1]; while(j<n1) { scanf("%d",&p1[j]); j++; } Sort(p1,n1); printf(" After ordering ");Printarr(p1,n1); printf(" Please enter an array p2[] size :"); scanf("%d",&n2); int p2[n2]; j=0; while(j<n2) { scanf("%d",&p2[j]); j++; } Sort(p2,n2); printf(" After ordering ");Printarr(p2,n2); int n3=n1+n2; int p3[n3]; j=0; while(j<n1) { p3[j]=p1[j]; j++; } while(j<n3) { p3[j]=p2[j-n1]; j++; } printf(" After the merger ");Printarr(p3,n3); Sort(p3,n3); printf(" After ordering ");Printarr(p3,n3); return 0; }
Refer to the answer 4:
copyright notice
author[CSDN Q & A],Please bring the original link to reprint, thank you.
https://en.primo.wiki/2022/02/202202021818233977.html
The sidebar is recommended
- Appium code failed to open mobile app
- About the problems of C language 2022 calendar event recording system! (development tool eclipse)
- Restart Ubuntu as soon as VMware starts
- The computer network is normal, but some web pages can't be opened. What should I do
- Why can't you query after adding information
- The reinstallation system has been stuck in "starting windows"
- How did my visual studio code change like this
- Alien project spacecraft collision error
- Opencv play nine palace game
- What library does spider need to add? Why doesn't Anaconda
guess what you like
-
Why not exchange? C language pointer
-
There is a problem with my SQL statement
-
First establish the input data into a binary sort tree, and then find the data. Enter the keyword sequence (63, 90, 70, 55, 67, 42, 98, 83, 10, 45, 58). 1. Establish a binary sort tree according to the order of the entered keywords.
-
Why is x output 13 instead of 3
-
Python code, interface problems
-
Python basic problems, read and write files, and solve them in a basic way
-
CSDN article reading statistics algorithm logic
-
Swift5 dynamically obtain the height of the navigation bar and status bar
-
A small problem about string []
-
Why is it not displayed in graphicsview
Random recommended
- MATLAB image hiding problem, please help
- Python fastobjectlistview cannot operate on setitem * *
- What should I fill in at the crosswalk
- College C language programming c + + Programming
- Appium + Python + Android JDK failed to connect to the mobile phone to run app
- I think the activity can be started in the background above Android Q. how to realize it
- Use the predict type parameter to define a method for filtering books
- Problems related to the use of C PropertyGrid
- How to set the gain & lt^ u
- Click one H5 item in the app to jump to another H5 item
- Find a solution to the error of this r code
- Python will test Put the PY file in a python package (such as D: \ TT), import the package test in test2, and output the value of the variable data.
- When using PPO strategy to train reinforcement learning model, how to evaluate the quality of the model and judge whether it converges?
- Calculate the number of uppercase letters, lowercase letters and numbers in any string
- If you work from home, the same operation will fail
- Content encapsulation under three-level classification of Java
- The idea switches branches and the project directory structure disappears
- 1. Customize a - function to realize the following functions: input the accuracy e, and use the following formula to calculate the approximate value of cosx until the absolute value of the last - item is less than E. It is required to define and call the
- Find its Huffman code? Give the coding process and coding results (please give the large probability as 1 and the small probability as 0) Calculate the average code length. Calculate the compression ratio before and after coding
- C language and documents to solve students' performance problems
- C language file encryption applet problem
- Three types of MPEG images
- How to write this program code
- Questions about data structure: data structure sequence table (language-c language)
- A problem of energy economics
- Vscode why does Python have two problems when the external window is running? Press any key to continue?
- Using 7474n to build JK Trigger and D trigger.
- C language two-dimensional array, for interpretation
- When simulating with botu and factory IO, factory IO I2 The contacts behind 0 are not working
- How to solve termux qqbot error?
- C + + getline cannot correctly read the console input Chinese
- Android development bookkeeping
- About the problem of C language: input 12 + 3 with DEVC + + to get 12.000000. I don't know what's wrong, include & lt; stdio. h&gt;
- Prompt the user to enter an integer n and N real numbers, calculate and output the sum of the negative numbers in the input n real numbers.
- Using C52 and LCD1602 to simulate an electronic clock, how to program four modes and one LED flashing for four keys
- Do any friends know how to do this? Please
- For problems occurred during GCN reproduction, it is suggested that the openposedemo file cannot be found
- TypeError: string indices must be integers
- I really can't find answers to the exercises after freshman class.
- How is the MSE value compared with the vector?