摘要: #include <stdio.h>#include <stdlib.h>#include <assert.h>struct elt {struct elt *next;int value;};/** We could make a struct for this,* but it would ha 阅读全文