摘要:
Question:Find the total area covered by tworectilinearrectangles in a2Dplane.Each rectangle is defined by its bottom left corner and top right corner ... 阅读全文
摘要:
每次在网上搜关于VS有哪些常用快捷键的时候,出来的永远是一串长的不能再长的列表,完全没体现出“常用”二字,每次看完前面几个就看不下去了,相信大家都 有这种感觉。其实我们平时用的真的只有很少的一部分,借用一句“二八原则”——其中20%的常用快捷键就可以完成你80%的任务了,当然这里20%不准 确,只是... 阅读全文
摘要:
时先去系统目录中找头文件,如果没有再到当前目录下找。所以像标准的头文件 stdio.h, stdlib.h等都用;""则首先到当前目录下找,如果找不到再到系统目录下找。当include自定义的头文件时,优先使用“”。 阅读全文
摘要:
_tmain()是为了支持Unicode所使用的main的一个别名,既然是别名,应该有宏定义过的,在里#include #indlude 我们可以在中找到_tmain()的宏定义#define _tmain main所以经过预编译后,_tmain就变成了main了。main()是标准的C++的函... 阅读全文
摘要:
最近做图像需要用到Matlab和OpenCV,一些东西真的是要深入的研究进去才会有所发现,但Matlab和C++都不是我擅长的语言,所以要很加油很加油才行啊!!步入正题。 1. 环境:Win7 64位 + Visual Studio 2013 Community + OpenCV 3.0.0 2. ... 阅读全文
摘要:
Question:Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the... 阅读全文
摘要:
今天无意间看到CSDN上一位大牛师姐的博客,真的是好惊讶啊!很多时候总是太过自以为是,以为自己做不到的事情别人也很难做到。恰恰相反,成功总是伴随那些谦逊、努力、认真的人的!曾几何时,自己或许也是一个认真?的人?可是成也萧何,败也萧何。我的失败就在于败在了该保留的品质慢慢消失,不该生成的习惯也已生... 阅读全文
摘要:
Question:Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last... 阅读全文
摘要:
Question:Determine if a Sudoku is valid, according to:Sudoku Puzzles - The Rules.The Sudoku board could be partially filled, where empty cells are fil... 阅读全文
摘要:
Question:Given a binary tree, return thebottom-up level ordertraversal of its nodes' values. (ie, from left to right, level by level from leaf to root... 阅读全文