Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Need help sorting a linked list. is this a singly linked list or a doubly linked list : typedef struct lListAirPdata { airPdata *curAirPdataP; //Pointer
Need help sorting a linked list.
is this a singly linked list or a doubly linked list :
typedef struct lListAirPdata { airPdata *curAirPdataP; //Pointer to the Airport Data struct lListAirPdata *nextAirPdataList; // pointer to next } lListAirPdata;
also, what would be the best way to alphabetically sort this list. (will have strings containing both letters and numbers in any order.) im assuming it will be ordered numerically and then alphabetically
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started