我正在尝试在单个链接列表上使用插入排序,其中每个节点都有多个参数,例如:
typedef struct _node {
char param1[10];
char param2[10];
char param3[10];
struct _node *next;
} node;
算法将按param1对列表进行排序,如果等效项由param2决定顺序,则类似于param3。 我无法在线找到解决此问题的方法。对于单个参数,我已经实现了以下排序算法的实现:
void insertionSort(node **head) {
//Initialize sorted list
node *sorted = NULL;
node *current = *head;
//Insert every node into sorted list
while (current != NULL) {
// Store next for next iteration
node *next = current->next;
sortedInsert(&sorted, current);
// Update current
current = next;
}
//Replace old empty list with sorted list
*head = sorted;
}
void sortedInsert(node **head, node *new) {
node *current = *head;
// Special case for the head
if (current == NULL || strcmp(current->param1, new->param1) >= 0) {
new->next = current;
*head = new;
}
else {
while (current->next!=NULL && strcmp(current->next->param1, new->param1) < 0){
current = current->next;
}
new->next = current->next;
current->next = new;
}
}
我的猜测是我必须创建一个比较函数而不是以下位,也许是一个返回0或1的整数函数,对应于这两种情况:
current->param1 >= new->param1
current->next->param1 < new->param1
但是,我无法想出这样的功能。任何人都可以帮我解决这个问题吗?
答案 0 :(得分:0)
排序例程,通过比较来决定之前或之后的内容。如果在函数中完成比较,那么元素的顺序由返回确定(例如,小于零(通常为-1
),零,大于零(通常为1
的返回) )。
如果要对主要参数进行排序并遇到等效项,请按辅助字符串进行比较,并将这些结果用于展示位置。在大多数情况下,比较函数将采用指向要比较的每个节点的void指针。通过这种方式,您可以访问sort函数中的主要和次要字符串。如果第一次比较的结果等于零,则在sort函数中包含次要比较,并根据该次要比较的结果返回(-1, 0, 1
)。