摘要:
简介 其实网上的人讲的很好了 最著名的非对称加密在HTTPS/HTTP中实现 参考链接 https://zhuanlan.zhihu.com/p/43789231 https://blog.csdn.net/liudongdong19/article/details/82217431 常见的对称加密 阅读全文
摘要:
简介 使用系统库 code class MinStack { public: /** initialize your data structure here. */ deque<int> s; MinStack() { } void push(int val) { s.push_back(val); 阅读全文
摘要:
简介 暴力只要变量两遍, 挺好的, 不过更好的应该是动态规划. 应该是最简单的动态规划了吧 code class Solution { public: int maxSubArray(vector<int>& nums) { int max_num = nums[0]; for(int i=0; i 阅读全文
摘要:
简介 使用了C++自带的实现deque 和 unordered_map code class LRUCache { public: unordered_map<int, bool> map; unordered_map<int, int> mapV; deque<int> q; int capaci 阅读全文
摘要:
简介 jupyter-notebook --ip 0.0.0.0 开启 sudo docker run -ti -p 127.0.0.1:8888:8888 -v $(pwd):/home/fenics/shared -w /home/fenics/shared quay.io/fenicsproj 阅读全文