08 2019 档案

摘要:pre 生成关系森林 join 合并关系树 find 查找子节点 来源:https://blog.csdn.net/liujian20150808/article/details/50848646 阅读全文
posted @ 2019-08-26 17:15 夜歌乘年少 阅读(142) 评论(0) 推荐(0)
摘要:1.安装MySql: 2.配置MySQL: 检查服务: 连接数据库: sudo mysql -uroot -p 使用上面初始化的密码登录 3.使用SQL 创建数据库:CREATE database test; 连接数据库:use test; 创建数据表:create table testtable( 阅读全文
posted @ 2019-08-22 09:48 夜歌乘年少 阅读(313) 评论(0) 推荐(0)
摘要:Success Details Success Runtime: 36 ms, faster than 80.76% of Python3 online submissions for Implement strStr(). Memory Usage: 13.9 MB, less than 12.3 阅读全文
posted @ 2019-08-12 10:57 夜歌乘年少 阅读(168) 评论(0) 推荐(0)
摘要:Success Details Success Runtime: 52 ms, faster than 8.08% of Python3 online submissions for Remove Element. Memory Usage: 13.8 MB, less than 6.06% of  阅读全文
posted @ 2019-08-12 10:22 夜歌乘年少 阅读(148) 评论(0) 推荐(0)
摘要:要求原位去重排序,返回nums的length并用nums的引用来检查排序,非常无聊的字符操作 不如来一发深拷贝吧~233 Success Details Runtime: 92 ms, faster than 90.98% of Python3 online submissions for Remo 阅读全文
posted @ 2019-08-09 14:35 夜歌乘年少 阅读(293) 评论(1) 推荐(0)
摘要:从这位大佬这里抄了解法2:https://www.cnblogs.com/grandyang/p/4441324.html 解法二: 我们也可以使用递归来做,我们用 head 记录每段的开始位置,cur 记录结束位置的下一个节点,然后我们调用 reverse 函数来将这段翻转,然后得到一个 new_ 阅读全文
posted @ 2019-08-08 16:56 夜歌乘年少 阅读(178) 评论(0) 推荐(0)
摘要:这题很烦 做完满脑子都是箭头。 这里head之后 和tail之前 不能用next这种形式来给next复制 会造成循环链表 tailNode.next = headNode.next # 4 next point to 2 tailprevNode.next = headNode # 3 next p 阅读全文
posted @ 2019-08-08 16:06 夜歌乘年少 阅读(169) 评论(0) 推荐(0)
摘要:在家瘫了半个月,虚弱时长2月半,又来水题了~ 内存感人,不过想不出来不用temp保存中间值的链表交换方法了。 Success Details Success Runtime: 40 ms, faster than 44.76% of Python3 online submissions for Sw 阅读全文
posted @ 2019-08-08 10:36 夜歌乘年少 阅读(212) 评论(0) 推荐(0)
摘要:Linux: pstree Windows: ProcessExplorer or PS script:https://gist.github.com/atifaziz/9390344 or 阅读全文
posted @ 2019-08-05 17:41 夜歌乘年少 阅读(710) 评论(0) 推荐(0)
摘要:https://docs.microsoft.com/zh-cn/windows/security/threat-protection/auditing/basic-audit-directory-service-access 阅读全文
posted @ 2019-08-01 16:44 夜歌乘年少 阅读(239) 评论(0) 推荐(0)