2016年4月12日
摘要: #author by changingivan#2016/04/12 #include 2 #include 3 using namespace std; 4 5 int main() 6 { 7 //char str1[10], str2[10]; 8 string str1,str2; 9 cin>>str1; 10 cin>>str2;... 阅读全文
posted @ 2016-04-12 23:38 changingivan 阅读(318) 评论(0) 推荐(0) 编辑
摘要: #author by changingivan# 2016.04.12#include #include using namespace std; struct Node { int val; Node *next; }; Node * creat_link() { Node *head=NULL; Node *current=NULL; Node... 阅读全文
posted @ 2016-04-12 19:59 changingivan 阅读(768) 评论(0) 推荐(0) 编辑