-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path17_Delete_tempnode.cpp
79 lines (69 loc) · 1.52 KB
/
17_Delete_tempnode.cpp
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
68
69
70
71
72
73
74
75
76
77
78
79
/*
2019-11.23
一种怪异的链表删除方式
输入:
5
1 2 3 4 5
3
输出:
1 2 4 5
*/
# include <bits/stdc++.h>
using namespace std;
struct list_node{
int val;
struct list_node * next;
};
list_node * find_kth_node(list_node * head, int k)
{
list_node * c = head;
for (int i = 1; i < k; ++i) c = c->next;
return c;
}
list_node * input_list(void)
{
int n, val;
list_node * phead = new list_node();
list_node * cur_pnode = phead;
scanf("%d", &n);
for (int i = 1; i <= n; ++i) {
scanf("%d", &val);
if (i == 1) {
cur_pnode->val = val;
cur_pnode->next = NULL;
}
else {
list_node * new_pnode = new list_node();
new_pnode->val = val;
new_pnode->next = NULL;
cur_pnode->next = new_pnode;
cur_pnode = new_pnode;
}
}
return phead;
}
/*--------------------------------------Code Here--------------------------------------*/
void remove_node_wired(list_node * node)
{
list_node *next = node->next;
node->val = next->val;
node->next = next->next;
}
void print_list(list_node * head)
{
while (head != NULL) {
printf("%d ", head->val);
head = head->next;
}
puts("");
}
int main ()
{
list_node * head = input_list();
int n;
scanf("%d", &n);
list_node * node = find_kth_node(head, n);
remove_node_wired(node);
print_list(head);
return 0;
}