Skip to content

Instantly share code, notes, and snippets.

@rushout09
Created December 16, 2018 15:51
Show Gist options
  • Save rushout09/243ecb7b1588fcc2d16801c261a1e179 to your computer and use it in GitHub Desktop.
Save rushout09/243ecb7b1588fcc2d16801c261a1e179 to your computer and use it in GitHub Desktop.
A Teacher correct the exam answersheets of a class. She decides to arrange the papers in the ascending order of the marks as she corrects the answersheets. Write a function to insert the marks in a Singly linked list in ascending order from the given marks. INPUT First line contains 1 int N (number of sheets). Second line contains N integers (ma…
#include <stdio.h>
#include <stdlib.h>
struct node{
int data;
struct node *next;
};
struct node *head;
void disp(){
printf("Marks\n");
struct node *p = head;
while(p!=NULL){
printf("->%d",p->data);
p=p->next;
}
}
void insert(int x){
struct node *temp,*p;
temp = (struct node *)malloc(sizeof(struct node));
temp->next=NULL;
temp->data=x;
if(head==NULL || temp->data < head->data){
temp->next = head;
head = temp;
}
else{
p = head;
while(p->next!=NULL && (temp->data > p->next->data)){
p=p->next;
}
temp->next=p->next;
p->next = temp;
}
}
int main()
{
int i,n,x;
head = NULL;
scanf("%d",&n);
for(i=0;i<n;i++){
scanf("%d",&x);
insert(x);
}
disp();
return 0;
}
@rushout09
Copy link
Author

Input (stdin)
6

87 64 90 76 100 54

Expected Output

Marks

->54->64->76->87->90->100

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment