#include <iostream> using namespace std; struct Node { int val; struct Node* next; }; Node* input_List() { int n,val; Node* phead=new Node(); Node* pcur=phead; cin>>n; for(int i=1;i<=n;i++) { cin>>val; if(i==1) { pcur->v...