Sort singly linked list: /****************************************************************************** Online C Compiler. Code, Compile, Run and Debug C program online. Write your code in this editor and press "Run" button to compile and execute it. *******************************************************************************/ #include <stdio.h> #include <stdlib.h> struct Node { int data; struct Node* next; }; void push(int element, struct Node* head){ struct Node* temp = head; struct Node* newNode; newNode =(struct Node *)malloc(1*sizeof(struct Node)); newNode->data = element; newNode->next = NULL; while(temp->next){ temp = temp->next; } temp->next = newNode; } void sort(struct Node* head){ struct Node *...
Posts
Showing posts from February, 2022