#include <iostream> using namespace std; struct Node { int num; Node* next; }; void bulid_link_list(Node* dummy_head, int n, int* array) { Node* temp =&...