摘要: 笔试一场 两题leetcode 学习QUIC协议 GCC工具的调式 class Solution { public: int longestValidParentheses(string s) { int dp[30100] = {0};int ans = 0; for(int i = 0; i < 阅读全文
posted @ 2021-08-29 21:52 风生 阅读(19) 评论(0) 推荐(0) 编辑
摘要: CCPC网络赛 一场笔试 刷三题 总结复盘最近所学的知识。 看了八章和第九章的一部分。 一题leetcode /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * Tre 阅读全文
posted @ 2021-08-28 21:53 风生 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 三题leetcode 背Mysql的八股文 写测评 学习mysql 5讲 class Solution { public: long long get_count(long long p1,long long n){ long long ans = 0; for(long long p = p1,q 阅读全文
posted @ 2021-08-27 22:31 风生 阅读(25) 评论(0) 推荐(0) 编辑
摘要: leetcode 2题 bilbi二面 腾讯音乐笔试 复盘面经,看了C++内存泄露 智能指针这块知识 阅读全文
posted @ 2021-08-26 22:19 风生 阅读(27) 评论(0) 推荐(0) 编辑
摘要: leetcode3题 重新学习了下红黑树 平衡二叉树 堆 mysql 5讲 两篇面经学习 今天状态不是很好 ``` //笔记将同步在小程序中,便于复 class Solution { public: int trap(vector<int>& height) { int area = 0,pre = 阅读全文
posted @ 2021-08-25 21:59 风生 阅读(21) 评论(0) 推荐(0) 编辑
摘要: leetcode3个困难 看了场景题10题; 两场笔试 mysql 5讲 图解网络 十道海量数据处理面试题与十个方法大总结_知识库_博客园 (cnblogs.com) [//]: # (支持粘贴图片啦🎉🎉🎉) [//]: # (保存的笔记可以在小程序中查看) ``` class Solutio 阅读全文
posted @ 2021-08-24 22:04 风生 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 两题困难 [//]: # (支持粘贴图片啦🎉🎉🎉) [//]: # (保存的笔记可以在小程序中查看) ``` class Solution { public: int dp[10]; int vis[10]; string ans = ""; void dfs(int n,int k,int 阅读全文
posted @ 2021-08-23 21:54 风生 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 极客时间 3讲;内容较多 消化吃力 笔试一场 两个leetcode困难题目 2场面试 [//]: # (支持粘贴图片啦🎉🎉🎉) [//]: # (保存的笔记可以在小程序中查看) ``` class Solution { public: int dp[100100]; int sum[10010 阅读全文
posted @ 2021-08-22 22:03 风生 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 两个leetcode困难 [//]: # (支持粘贴图片啦🎉🎉🎉) [//]: # (保存的笔记可以在小程序中查看) ``` class Solution { public: int shortestSubarray(vector<int>& nums, int k) { int ans = 阅读全文
posted @ 2021-08-21 22:18 风生 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 上午一家小安全公司一面 下午百度二面 复盘学习了面试中不会的内容 同时今天学习了http几大协议的原理;重新复习了一下八股 阅读全文
posted @ 2021-08-20 21:57 风生 阅读(23) 评论(0) 推荐(0) 编辑