logo

Crowdly

we suggest the following function:  void reverse(t_ht_list *p_list) { t...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

we suggest the following function: 
void reverse(t_ht_list *p_list)

{

t_cell *temp;

temp = p_liste->tail;

p_liste->tail= p_liste->head;

p_liste->head= temp;

return;

}

You are told that this allows the list to be browsed in the opposite direction to its initial order.....true or false?

25%
75%
More questions like this

Want instant access to all verified answers on moodle.myefrei.fr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!