- 论坛徽章:
- 2
|
加了点,若长度相等,则按首单词字母顺序排列。
- #include <ctype.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #define LENGTH(a) (sizeof(a)/sizeof((a)[0]))
- int get_first_word_length(const char *s)
- {
- int i;
- if (s != NULL) {
- for (i = 0; s[i] != '\0'; ++i) {
- if (!isalpha(s[i])) {
- break;
- }
- }
- return i;
- }
- return 0;
- }
- int first_word_length_compare(const char **s1, const char **s2)
- {
- int len1;
- int len2;
- len1 = get_first_word_length(*s1);
- len2 = get_first_word_length(*s2);
- if (len1 < len2) {
- return -1;
- }else if (len1 > len2) {
- return 1;
- }
- return strncmp(*s1, *s2, len1);
- }
- int main(void)
- {
- static const char *table[] =
- {
- "Like your life.",
- "Protecting your dignity.",
- "Your parents love you.",
- "Love your hobby.",
- "The child is cute.",
- "Complete your work.",
- "Loading data.",
- "Long for your things.",
- "Shut down your computer.",
- "system.",
- };
- int i;
- qsort((char**)table, LENGTH(table), sizeof(char*), first_word_length_compare);
- for (i = 0; i < LENGTH(table); ++i) {
- puts(table[i]);
- }
- return 0;
- }
复制代码 |
|