自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

转载 mutex, unique_lock & lock_guard

mutex v.s. unique_lockThe usage of std::mutex and std::unique_lock are similar. They both have lock() and unlock() operations. The difference is that std::unique_lock calls unlock on the mutex in its...

2018-11-16 03:37:43 149

原创 Preorder & Postorder -> multiple tree

// Preorder & Postorder -> multiple tree// Preorder = [1, 2, 3], Postorder = [3, 2, 1]// Tree: 1 1 1 1// / / \ \// 2 2 ...

2018-10-28 03:11:18 112

原创 C++ STL使用

string// substring and findstring str="We think in generalities, but we live in details.";string str2 = str.substr (3,5); // "think"size_t pos = str.find("live"); // position of

2018-10-28 03:09:41 97

原创 C++ Iterator Overloading

// The class you want to have an iterator// Need to implement begin() and end() interfacesclass ListOfList { list<list<int> > s; MyIterator begin(); MyIterator end();}// The cus...

2018-10-28 02:54:45 111

原创 C++ Operator Precedence

C++ Operator Precedencesource::a++   a--   a()   a[]   a.   a->++a   --a   +a   -a   !a   ~a   *a   &a   sizeof   new   delete.*   ->*a*b   a/b   a%ba+b   a-ba >&g...

2018-10-28 02:49:03 179

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除