我的任务是用户输入包含月份,日期和年份的n行,格式为"1月12日99".
我必须按时间顺序排序日期列表,首先使用qsort逐年,然后按天,然后按月.
我的问题是我不知道如何对多个索引进行qsort.我已经完成了今年的工作,但是在那之后我不知道如何在当天进行调整,因为它肯定会在白天对它进行排序,但这些年将再次混乱?
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef int (*compfn)(const void*, const void*);
struct date
{
char month[9]; //Maximum of 9 characters in a month
int day; //The day of the month (e.g. 18)
int year; //The year of the date
};
int sortDates(struct date *elem1, struct date *elem2)
{
if (elem1 -> year < elem2 -> year)
{
return -1;
}
else
if (elem1->year > elem2->year)
{
return 1;
}
else
return 0;
}
main()
{
int n;
int i;
scanf("%d", &n);
struct date *list;
list = (struct date *)malloc((n * sizeof(struct date)));
for(i = 0; i < n; i++)
{
scanf("%s %d %d", list[i].month, &list[i].day, &list[i].year);
}
qsort(list, sizeof(list), sizeof(struct date), (compfn)sortDates);
for(i = 0; i < n; i++)
{
printf("%s %d %d\n", list[i].month, list[i].day, list[i].year);
}
}
Run Code Online (Sandbox Code Playgroud)
编辑:所以我有排序工作,我只是努力从一个整数转换回打印排序列表月份的字符串表示.这是代码,我得到"数组下标不是整数"错误.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef int (*compfn)(const void*, const void*);
struct date
{
int month;
int day; //The day of the month (e.g. 18)
int year; //The year of the date
};
char* months[]= {
"January", "February",
"March", "April",
"May", "June",
"July", "August",
"September", "October",
"November", "December"};
int getMonth(char tempMonth[])
{
int i = 0;
for(i = 0; i<12; i++)
{
if(tempMonth == months[i]) return i;
}
return 0;
}
char getStringMonth(struct date month)
{
return months[month];
}
int sortDates(struct date *elem1, struct date *elem2)
{
if (elem1 -> year < elem2 -> year)
{
return -1;
}
else
if (elem1->year > elem2->year)
{
return 1;
}
if ( elem1->month < elem2->month )
{
return -1;
}
else
if ( elem1->month > elem2->month )
{
return 1;
}
if ( elem1->day < elem2->day )
{list
return -1;
}
else
if ( elem1->day > elem2->day )
{
return 1;
}
else
return 0;
}
main()
{
int n;
int i;
char tempMonth[255]; //Used to store the month until checked
scanf("%d", &n);list
struct date *list;
list = (struct date *)malloc((n * sizeof(struct date)));
for(i = 0; i < n; i++)
{
scanf("%s %d %d", tempMonth, &list[i].day, &list[i].year);
list[i].month = getMonth(tempMonth);
}
qsort(list, sizeof(list), sizeof(struct date), (compfn)sortDates);
for(i = 0; i < n; i++)
{
printf("%s %d %d", getStringMonth(list[i].month), list[i].day, list[i].year);
}
}
Run Code Online (Sandbox Code Playgroud)
记住free你的记忆malloc.
在下面的代码中,我假设月份存储为数字,但我在您的结构中看到情况并非如此.我将输入的月份从字符串转换为数字,以简化排序过程.
int sortDates(struct date* elem1, struct date* elem2)
{
if ( elem1->year < elem2->year)
return -1;
else if ( elem1->year > elem2->year )
return 1;
/* here you are sure the years are equal, so go on comparing the months */
if ( elem1->month < elem2->month )
return -1;
else if ( elem1->month > elem2->month )
return 1;
/* here you are sure the months are equal, so go on comparing the days */
if ( elem1->day < elem2->day )
return -1;
else if ( elem1->day > elem2->day )
return 1;
else
return 0; /* definitely! */
}
Run Code Online (Sandbox Code Playgroud)
还要注意这个声明:char month[9];9月确实是9个字符,但你需要'\0'在C 中用一个终结符字符串来关闭一个字符串.为了避免这种问题,我会声明一个包含所有月份的数组,以允许检查并将月份从字符串转换为数字:
char* allMonths[]=
"January", "February",
"March", "April",
"May", "June",
"July", "August",
"September", "October",
"November", "December";
char tmpMonth[255];
scanf("%s %d %d", tmpMonth, &list[i].day, &list[i].year);
/* convert tmpMonth to a number by finding it in the allMonths and throw error if not found */
Run Code Online (Sandbox Code Playgroud)