摘要:
#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;... 阅读全文
摘要:
#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... 阅读全文