04 2019 档案

C++ 实现简单快速排序
摘要:```c++ include include using namespace std; define LOG(s)\ cout high) return; int i,j,tmp,t; i = low; j = high; tmp = a[low]; while(i = a[i] && i 阅读全文

posted @ 2019-04-24 15:40 庭中核桃树 阅读(270) 评论(0) 推荐(0)

LEETCODE 198. House Robber
摘要:```c++ class Solution { public: int rob(vector& nums) { int len = nums.size(); if(!len) return 0; if(len == 1) return nums[0]; std::vector mem(len,0); 阅读全文

posted @ 2019-04-18 14:52 庭中核桃树 阅读(110) 评论(0) 推荐(0)

leetcode 174
摘要:```c++ / @lc app=leetcode id=174 lang=cpp [174] Dungeon Game https://leetcode.com/problems/dungeon game/description/ algorithms Hard (26.59%) Total Ac 阅读全文

posted @ 2019-04-18 13:28 庭中核桃树 阅读(211) 评论(0) 推荐(0)

GIT 版本的回退
摘要:查看commitid 。 版本的回退及查看reflog进行版本的选择。 阅读全文

posted @ 2019-04-16 10:38 庭中核桃树 阅读(169) 评论(0) 推荐(0)

unorderd_map 自定义键值及哈希函数的重载
摘要:参考链接: https://blog.csdn.net/y109y/article/details/82669620 阅读全文

posted @ 2019-04-16 09:16 庭中核桃树 阅读(487) 评论(0) 推荐(0)

互斥锁 形成死锁实例
摘要:```c++ include include include std::mutex coutMutex; int main(){ std::thread t([]{ std::cout lockGuard(coutMutex); std::cout lockGuard(coutMutex); std 阅读全文

posted @ 2019-04-11 15:31 庭中核桃树 阅读(248) 评论(0) 推荐(0)

导航