摘要: ``` #include using namespace std; struct linklist{ int val; struct linklist* next; linklist(int x) : val(x), next(nullptr){}; }; linklist* getPartion(linklist* phead, linklist* pend) {... 阅读全文
posted @ 2019-08-27 15:39 lllittletree 阅读(329) 评论(0) 推荐(0) 编辑