摘要: A simple and in-place idea: first reverse the image in row-major order and then transpose it :-) 1 class Solution { 2 public: 3 void rotate(vector... 阅读全文
posted @ 2015-08-10 13:45 jianchao-li 阅读(154) 评论(0) 推荐(0)
摘要: This problem has a naive solution usingsortand linear scan. The suggested solution uses the idea ofbucket sort. The following is a C++ implementation ... 阅读全文
posted @ 2015-08-10 11:03 jianchao-li 阅读(306) 评论(0) 推荐(0)