-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathdelete-a-node-from-a-linked-list.cpp
More file actions
67 lines (55 loc) · 1.07 KB
/
Copy pathdelete-a-node-from-a-linked-list.cpp
File metadata and controls
67 lines (55 loc) · 1.07 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Delete a Node
// Delete a node from the linked list and return the head.
//
// https://www.hackerrank.com/challenges/delete-a-node-from-a-linked-list/problem
//
#include "linked-list.hpp"
Node* Delete(Node *head, int position);
int main()
{
int t, position;
std::cin >> t;
while (t--)
{
Node *a = read_nodes();
std::cin >> position;
a = Delete(a, position);
print_nodes(a, "");
free_nodes(a);
}
return 0;
}
/*
Delete Node at a given position in a linked list
Node is defined as
struct Node
{
int data;
struct Node *next;
}
*/
Node* Delete(Node *head, int position)
{
// Complete this method
if (head == NULL) return NULL;
if (position == 0)
{
Node *node = head->next;
delete head;
return node;
}
Node *node = head;
Node *prev;
while (position != 0 && node)
{
--position;
prev = node;
node = node->next;
}
if (node != NULL)
{
prev->next = node->next;
delete node;
}
return head;
}