摘要: 一、定义:RTTI:Run Time Type Identification ,运行时类型识别:指程序能够使用基类的指针或引用来检索其所指对象的实际派生类型。二、使用方式:C++中有两个操作符提供RTTI:(1)typeid 操作符:返回指针或引用所指对象的实际类型。(2)dynamic_cast ... 阅读全文
posted @ 2015-06-12 15:16 imKirin 阅读(923) 评论(0) 推荐(0) 编辑
摘要: 1, 二叉树结构struct TreeNode{ int val; TreeNode* left; TreeNode* right; TreeNode(int x) : val(x), left(NULL), right(NULL) {... 阅读全文
posted @ 2015-06-11 16:04 imKirin 阅读(292) 评论(0) 推荐(0) 编辑
摘要: Validate Binary Search TreeGiven a binary tree, determine if it is a valid binary search tree (BST).Assume a BST is defined as follows:The left subtre... 阅读全文
posted @ 2015-06-10 10:40 imKirin 阅读(185) 评论(0) 推荐(0) 编辑
摘要: Rectangle AreaFind the total area covered by tworectilinearrectangles in a2Dplane.Each rectangle is defined by its bottom left corner and top right co... 阅读全文
posted @ 2015-06-09 16:36 imKirin 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 第一级空间配置器 第一级配置以malloc(), free(), realloc()等c函数执行实际的内存配置,释放、重配置操作,并实现出类似c++ new handler的机制。它不能直接使用c++ new handler机制,因为它并非使用::operator new来配置内存。 所谓的c+... 阅读全文
posted @ 2015-06-04 16:33 imKirin 阅读(290) 评论(0) 推荐(0) 编辑
摘要: Rotate ImageYou are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?分析:rota... 阅读全文
posted @ 2015-05-11 13:30 imKirin 阅读(109) 评论(0) 推荐(0) 编辑
摘要: House RobberYou are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint... 阅读全文
posted @ 2015-05-08 16:27 imKirin 阅读(233) 评论(0) 推荐(0) 编辑
摘要: Gray CodeThe gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integernrepresenting the tot... 阅读全文
posted @ 2015-05-08 16:01 imKirin 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Convert Sorted Array to Binary Search TreeGiven an array where elements are sorted in ascending order, convert it to a height balanced BST.分析: 我们知道,BS... 阅读全文
posted @ 2015-05-07 14:54 imKirin 阅读(84) 评论(0) 推荐(0) 编辑
摘要: Populating Next Right Pointers in Each NodeGiven a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLi... 阅读全文
posted @ 2015-05-07 13:15 imKirin 阅读(137) 评论(0) 推荐(0) 编辑