#891. C++-快速排序-定义一整数数组,如:10个整数...,并通过快速排序(正序,从小到大)进行排序并打印

C++-快速排序-定义一整数数组,如:10个整数...,并通过快速排序(正序,从小到大)进行排序并打印

Background

Description

C++-快速排序-定义一整数数组,如:10个整数:5 9 10 10 7 10 2 20 1 5,并通过快速排序(正序,从小到大)进行排序并打印 image

Format

Input

Output

Samples

10
5 9 10 10 7 10 2 20 1 5
1 2 5 5 7 9 10 10 10 20

Limitation

1s, 1024KiB for each test case.