全部博文(160)
发布时间:2014-11-05 13:55:20
// 方法一, 递归实现ListNode* ReverseList(ListNode* pHead){ return ReverseListRecursive(NULL,pHead); }// 返回反转后的头结点ListNode* ReverseListRecursive(ListNode* pPrev, ListNode* pNode){ // 空链表 if (pNode == NULL) {&nb.........【阅读全文】
发布时间:2014-11-04 23:47:41
// 方法strcatchar*strcat(char *strDest, const char *strSrc){ assert((strDest != NULL) &&(strSrc != NULL)); char *address = strDest; while.........【阅读全文】
发布时间:2014-11-04 23:42:21
//// main.cpp// AUTO_PRO//// Created by yanzhengqing on 12-12-11.// Copyright (c) 2012年 yanzhengqing. All rights reserved.//#include <iostream>using namespace std;/****char *memset(dst, val, count) - s.........【阅读全文】
发布时间:2014-11-04 23:41:19
//// main.cpp// AUTO_PRO//// Created by yanzhengqing on 12-12-11.// Copyright (c) 2012年 yanzhengqing. All rights reserved.//#include <string>#include <iostream>using namespace std;/****memmove.........【阅读全文】
发布时间:2014-11-04 23:39:57
//// main.cpp// AUTO_PRO//// Created by yanzhengqing on 12-12-11.// Copyright (c) 2012年 yanzhengqing. All rights reserved.//#include <iostream>using namespace std;/*** *char *memchr(buf, chr, cnt) - searc.........【阅读全文】