Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
#include <stdio.h>
#include <string.h>
#include "main.h"
void main(void){
PERSON* head;
PERSON A, B, C;
head = &C;
A.name = "Alpha";
A.next = NULL;
B.name = "Bravo";
B.next = &A;
C.name = "Charlie";
C.next = &B;
printList(head);
sort(&head);
printList(head);
}
void sort(PERSON** head){
if(strcmpi((*head)->next->name, (*head)->name) < 0){
PERSON* _tmp = (*head);
*head = (*head)->next;
_tmp->next = (*head)->next;
(*head)->next = _tmp;
}
printList((*head));
}
void printList(PERSON* head){
while(head != NULL){
printf("%s\n",head->name);
head = head->next;
}
printf("\n");
}