摘要: C语言内存分布 典型的C语言程序内存表示分区共有5个部分: 1. 正文段 Text segment 2. 已初始化数据段(数据段)Initialized data segment 3. 未初始化数据段(bss)Uninitialized data segment 4. 堆 Stack 5. 栈 He 阅读全文
posted @ 2018-01-26 17:16 言何午 阅读(2696) 评论(0) 推荐(0) 编辑
摘要: Symmetric Tree 题解 原创文章,拒绝转载 题目来源:https://leetcode.com/problems/symmetric tree/description/ Description Given a binary tree, check whether it is a mirr 阅读全文
posted @ 2018-01-26 15:03 言何午 阅读(108) 评论(0) 推荐(0) 编辑
摘要: Maximum Depth of Binary Tree 题解 原创文章,拒绝转载 题目来源:https://leetcode.com/problems/maximum depth of binary tree/description/ Description Given a binary tree 阅读全文
posted @ 2018-01-26 12:54 言何午 阅读(93) 评论(0) 推荐(0) 编辑
摘要: Binary Tree Level Order Traversal 题解 原创文章,拒绝转载 题目来源:https://leetcode.com/problems/binary tree level order traversal/description/ Description Given a b 阅读全文
posted @ 2018-01-26 11:28 言何午 阅读(142) 评论(0) 推荐(0) 编辑
摘要: Validate Binary Search Tree 题解 原创文章,拒绝转载 题目来源:https://leetcode.com/problems/validate binary search tree/description/ Description Given a binary tree, 阅读全文
posted @ 2018-01-26 10:53 言何午 阅读(115) 评论(0) 推荐(0) 编辑