摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->voidprintSList(slist*pList){assert(pList);if(pList==NULL)return;if(pList->next==NULL)printf("%s",*pList);else{printSList(pList->next);printf("%s",*pList);}}以后遇到尽可能少的关键字就会想到递 阅读全文
posted @ 2013-09-15 14:45 l851654152 阅读(135) 评论(0) 推荐(0) 编辑