2019年2月21日

leetcode 链表类型题总结

摘要: 链表测试框架示例: 1 // leetcodeList.cpp : 定义控制台应用程序的入口点。vs2013 测试通过 2 // 3 4 #include "stdafx.h" 5 #include <Windows.h> 6 #include <iostream> 7 8 using namesp 阅读全文

posted @ 2019-02-21 16:50 爱笑的张飞 阅读(295) 评论(0) 推荐(0) 编辑

VS2013 warning C4018 "<” 有符号/无符号不匹配

摘要: 1, VS2013 warning C4018 "<” 有符号/无符号不匹配" 警告 出错代码: void show(const vector<int>& nums){ for (int i = 0; i < nums.size(); i++){ cout << '\t' << nums[i]; } 阅读全文

posted @ 2019-02-21 12:56 爱笑的张飞 阅读(2462) 评论(0) 推荐(1) 编辑

2019年2月20日

激活 pycharm

摘要: step1: 在本地 hosts 文件增加一行,windows 路径一般为:C:\Windows\System32\drivers\etc step2: 输入激活码 7SPIY8PDT7-eyJsaWNlbnNlSWQiOiI3U1BJWThQRFQ3IiwibGljZW5zZWVOYW1lIjoi 阅读全文

posted @ 2019-02-20 17:46 爱笑的张飞 阅读(224) 评论(0) 推荐(0) 编辑

2019年2月18日

leetcode 数组类型题总结

摘要: 1,removeDuplicates(I) 1 int removeDuplicatesI(vector<int>& nums){ // 重新组织数组,同 removeDuplicates2IV 2 int index = 0; 3 for(int i=0;i<nums.size();++i){ 4 阅读全文

posted @ 2019-02-18 20:27 爱笑的张飞 阅读(657) 评论(0) 推荐(0) 编辑

leetcode 数组类型题

摘要: 题目参考教材:https://github.com/soulmachine/leetcode(leetcode-cpp.pdf) 阅读全文

posted @ 2019-02-18 14:34 爱笑的张飞 阅读(259) 评论(0) 推荐(0) 编辑

2019年1月31日

STL::string

摘要: Iterators begin: end: rbegin: rend: cbegin: cend: crbegin: crend: Capacity size: length: max_size: resize: capacity: 返回实际分配的存储空间的大小,一般大于等于 size 。这样能优化 阅读全文

posted @ 2019-01-31 23:58 爱笑的张飞 阅读(271) 评论(0) 推荐(0) 编辑

2019年1月30日

STL::bitset

摘要: bitset: A bitset stores bits。大小通过参数传递,在编译时确定。可变的可参考 vector<bool>。 constructor default: integer value: 传入 unsigned long long val。 string: C_string: 1 / 阅读全文

posted @ 2019-01-30 15:47 爱笑的张飞 阅读(160) 评论(0) 推荐(0) 编辑

STL::unordered_map/unordered_multimap

摘要: unordered_map: 和 unorder_set 相似,该容器内部同样根据 hash value 把键值对存放到相应的 bucket(slot)中,根据单个 key 来访问 value 的速度很快。 unordered_multimap: 操作和 unorder_map 相同,不同点是 ke 阅读全文

posted @ 2019-01-30 14:47 爱笑的张飞 阅读(845) 评论(0) 推荐(0) 编辑

STL::map/multimap

摘要: map: 默认根据 key 排序(从小到大),能够通过 backet operator(operator [ ]) 来获取元素,内部由二叉搜索树来实现(binary search trees)。 multimap: 操作和 map 相同,不同点只是 key 可以相同。 Iterators begin 阅读全文

posted @ 2019-01-30 14:14 爱笑的张飞 阅读(184) 评论(0) 推荐(0) 编辑

2019年1月29日

STL:unordered_set/unordered_multiset(c++11)

摘要: unordered_set:容器内的元素无序排列,基于值进行获取单个元素速度非常快。内部根据它们的 hash value 被组织成 buckets(slot)。 unordered_multiset: 操作和 unordered_set 相同,只是 key 可以重复。 Iterators begin 阅读全文

posted @ 2019-01-29 22:23 爱笑的张飞 阅读(863) 评论(0) 推荐(0) 编辑

导航