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

与malloc有关的问题

时间:2016-04-28 00:14:57      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:

nefu 1026 

申请动态空间存放字符串,将其排序后输出

http://acm.nefu.edu.cn/JudgeOnline/problemShow.php?problem_id=1026

技术分享
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
using namespace std;

struct node
{
    char str[55];
} data[25];

bool cmp(const node &a,const node &b)
{
    if(strcmp(a.str,b.str)<0) return true;
    else return false;
}

int main()
{
    int n;
    node *p,tmp;
    while(cin>>n)
    {
        for(int i=0;i<n;i++)
        {
            p=(struct node *)malloc(sizeof(struct node));
            cin>>p->str;
            strcpy(data[i].str,p->str);
        }
        sort(data,data+n,cmp);
        for(int i=0;i<n;i++)
        cout<<data[i].str<<endl;
    }
    return 0;
}
View Code

 

与malloc有关的问题

标签:

原文地址:http://www.cnblogs.com/nefu929831238/p/5440817.html

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