07 2014 档案

Leetcode:N-Queens
摘要:Then-queens puzzle is the problem of placingnqueens on ann×nchessboard such that no two queens attack each other.Given an integern, return all distinc... 阅读全文

posted @ 2014-07-31 20:46 Ryan-Xing 阅读(170) 评论(0) 推荐(0)

Relevance Between Variable Declaration and Definition in C++
摘要:A declaration makes a name known to a programm. A definition creates the assocatied entity. A variable declaration specifies the variable type and nam... 阅读全文

posted @ 2014-07-18 16:57 Ryan-Xing 阅读(235) 评论(0) 推荐(0)

Difference Between Initialization and Assignment in C++
摘要:Initialization happens when a variable is given a value at the moment it is created. Assignment obliterates the variable's current value and replace t... 阅读全文

posted @ 2014-07-18 15:56 Ryan-Xing 阅读(148) 评论(0) 推荐(0)