File tree 1 file changed +22
-1
lines changed
1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,22 @@ void q_free(struct list_head *head)
37
37
/* Insert an element at head of queue */
38
38
bool q_insert_head (struct list_head * head , char * s )
39
39
{
40
+ /* input validation */
41
+ // if (!head)
42
+ // return false;
43
+ // element_t *element = malloc(sizeof(element_t));
44
+ /* memory allocation failure */
45
+ // if (!element)
46
+ // return false;
47
+ // char *str = malloc(sizeof(char) * (strlen(s) + 1));
48
+ /* input validation */
49
+ // if (!str) {
50
+ // free(element);
51
+ // return false;
52
+ //}
53
+ // strncpy(str, s, strlen(s) + 1);
54
+ // element->value = str;
55
+ // list_add(&element->list, head);
40
56
return true;
41
57
}
42
58
@@ -93,7 +109,12 @@ void q_swap(struct list_head *head)
93
109
}
94
110
95
111
/* Reverse elements in queue */
96
- void q_reverse (struct list_head * head ) {}
112
+ void q_reverse (struct list_head * head )
113
+ {
114
+ struct list_head * current , * safe ;
115
+ list_for_each_safe (current , safe , head )
116
+ list_move (current , head );
117
+ }
97
118
98
119
/* Reverse the nodes of the list k at a time */
99
120
void q_reverseK (struct list_head * head , int k )
You can’t perform that action at this time.
0 commit comments