PROGRAMMING:Insertion of incremental ordered list
Experimental purposes: 1. Master the basic knowledge of linear table; 2. Deeply understand, master and flexibly use linear table. 3. Master the memory structure of linear table and the realization of main operation
Given that the order table L is incrementally ordered, insert x into the appropriate position of the linear table to ensure the order of the linear table..
###Input format:
Input the length of the sequence table in the first row, input the incremental sequence table in the second row, and input the data element X to be inserted in the third row.
###Output format:
For each group of inputs, the incremental sequence table after X is inserted is output in one row.
###Input example:
Here is a set of inputs. For example:
```in
five
1 3 5 7 9
six
```
###Output example:
The corresponding output is given here. For example:
```out
1,3,5,6,7,9,
```
answer:If there is no answer, please comment
Given that the order table L is incrementally ordered, insert x into the appropriate position of the linear table to ensure the order of the linear table..
###Input format:
Input the length of the sequence table in the first row, input the incremental sequence table in the second row, and input the data element X to be inserted in the third row.
###Output format:
For each group of inputs, the incremental sequence table after X is inserted is output in one row.
###Input example:
Here is a set of inputs. For example:
```in
five
1 3 5 7 9
six
```
###Output example:
The corresponding output is given here. For example:
```out
1,3,5,6,7,9,
```
answer:If there is no answer, please comment