sorting name, surname, id alphabetical order with using only a singly linked list

前端 未结 0 1745
终归单人心
终归单人心 2021-01-20 06:43

Example image

I have a struct like the given below:

struct Student
{
    char *name;
    char *surname;
    long int ID;
    struct Student *name_next;         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题