摘要: //连个链表相加//#include "stdafx.h"#include using namespace std;// single linked list nodestruct listNode{ int val; listNode *next; listNode(int x)... 阅读全文
posted @ 2015-05-21 21:15 wxquare 阅读(159) 评论(0) 推荐(0) 编辑