摘要: "strcpy及memcpy的内存重叠处理" 。 "深度剖析strcpy与memcpy" 。 阅读全文
posted @ 2019-09-01 22:42 赵春花 阅读(390) 评论(0) 推荐(0) 编辑
摘要: ```CPP include include using namespace std; //主函数 int main() { string tst; int size_a=sizeof(string); int a[9] = {1,2,3,4,5,6,7,8,9}; int p ; //p就是地址 阅读全文
posted @ 2019-09-01 21:43 赵春花 阅读(80) 评论(0) 推荐(0) 编辑
摘要: ```CPP /* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* ReverseList(ListN... 阅读全文
posted @ 2019-09-01 21:17 赵春花 阅读(136) 评论(0) 推荐(0) 编辑