#include #include #include typedef struct node* Node; Node create_node(int data); Node create_list(int length); void print_list(Node list); Node rec_reverseList(Node head); Node reverseList(Node head);