-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13-insert_number.c
52 lines (49 loc) · 900 Bytes
/
13-insert_number.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include "lists.h"
/**
* insert_node - inserts a number into a sorted singly linked list
* @head: pointer to the initial linked list pointer
* @number: number to insert
* Return: pointer to the new node
*/
listint_t *insert_node(listint_t **head, int number)
{
listint_t *new, *temp;
int i, j;
new = malloc(sizeof(listint_t));
if (!new)
return (NULL);
new->n = number, temp = *head;
if (!(*head))
return (*head = new, new->next = NULL, new);
for (i = 0; temp; i++)
{
if (number > temp->n)
{
if (!temp->next)
return (temp->next = new, new->next = NULL, new);
temp = temp->next;
continue;
}
else
{
new->next = temp;
if (temp == *head)
{
*head = new;
break;
}
temp = *head;
for (j = 0; j < i; j++)
{
if (j == (i - 1))
{
temp->next = new;
break;
}
temp = temp->next;
}
break;
}
}
return (new);
}