#include<stdio.h> #include<malloc.h> typedef struct ListNode { int val; struct ListNode* next; }ListNode; ListNode* BuyListNode(int val) { ListNode* newnode=(ListNode*)malloc(sizeof(ListNode)); newnode->next=NULL; &...