码迷,mamicode.com
首页 > 其他好文 > 详细

SWUST OJ(1102)

时间:2019-04-09 19:06:22      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:std   class   turn   font   size   cout   cst   namespace   ace   

顺序表上数据的划分问题的实现

 1 #include <iostream>
 2 #include <cstdlib>
 3 using namespace std;
 4 
 5 int main()
 6 {
 7     int *data, n;
 8     cin>>n;
 9 
10     data = (int*)malloc(n*sizeof(int));
11 
12     for (int i = 0; i < n; ++i)
13     {
14         cin>>data[i];
15     }
16 
17     for (int i = n-1; i >= 0; --i)
18     {
19         if (data[i] <= data[0])
20         {
21             cout<<data[i]<<" ";
22         }
23     }
24 
25     for (int i = 0; i < n; ++i)
26     {
27         if (data[i]>data[0])
28         {
29             cout<<data[i]<<" ";
30         }
31     }
32     return 0;
33 }

 

SWUST OJ(1102)

标签:std   class   turn   font   size   cout   cst   namespace   ace   

原文地址:https://www.cnblogs.com/Ghost4C-QH/p/10678439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!