Skip to content

Commit f1f4eba

Browse files
committed
Implement the 'q_reverse function
Reverse all elements in queue Change-Id: I90547acf2329f06adf976e24a229184f6be20de5
1 parent bdeb6aa commit f1f4eba

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

queue.c

+22-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,22 @@ void q_free(struct list_head *head)
3737
/* Insert an element at head of queue */
3838
bool q_insert_head(struct list_head *head, char *s)
3939
{
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);
4056
return true;
4157
}
4258

@@ -93,7 +109,12 @@ void q_swap(struct list_head *head)
93109
}
94110

95111
/* 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+
}
97118

98119
/* Reverse the nodes of the list k at a time */
99120
void q_reverseK(struct list_head *head, int k)

0 commit comments

Comments
 (0)