上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: Maximum Product Subarray Given an integer array nums, find the contiguous subarray within an array (containing at least one number) which has the larg 阅读全文
posted @ 2020-07-07 14:55 十三w~w 阅读(77) 评论(0) 推荐(0) 编辑
摘要: Reverse Words in a String Given an input string, reverse the string word by word. Example 1: Input: "the sky is blue" Output: "blue is sky the" Exampl 阅读全文
posted @ 2020-07-07 14:25 十三w~w 阅读(94) 评论(0) 推荐(0) 编辑
摘要: Sort List Sort a linked list in O(n log n) time using constant space complexity. Example 1: Input: 4->2->1->3 Output: 1->2->3->4 Example 2: Input: -1- 阅读全文
posted @ 2020-07-07 13:46 十三w~w 阅读(93) 评论(0) 推荐(0) 编辑
摘要: Evaluate Reverse Polish Notation Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are +, -, *, /. Each opera 阅读全文
posted @ 2020-07-07 12:05 十三w~w 阅读(66) 评论(0) 推荐(0) 编辑
摘要: Insertion Sort List Sort a linked list using insertion sort. A graphical example of insertion sort. The partial sorted list (black) initially contains 阅读全文
posted @ 2020-07-06 22:23 十三w~w 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 发现了一个好玩的模板Silence,地址为[https://www.cnblogs.com/esofar/p/cnblogs-theme-silence.html] 按照github上的配置教程即可完成配置~ 阅读全文
posted @ 2020-07-06 21:24 十三w~w 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 想写一个叫做《机器学习中的数学基础》系列文章 阅读全文
posted @ 2019-07-27 08:43 十三w~w 阅读(122) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-05-14 16:08 十三w~w 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 字体设置 关键词为 我是黑体 我是宋体 引号中可填:宋体、黑体、仿宋、微软雅黑、华文彩云…… 大小设置 关键词为 我的大小是3 我的大小是4 颜色设置 关键字 我是红色的 我是紫色的 可以填写数字,也可以填写颜色的单词,常见的颜色的单词: palegoldenrod 苍麒麟色 palegreen 苍 阅读全文
posted @ 2019-05-10 16:24 十三w~w 阅读(3501) 评论(0) 推荐(1) 编辑
摘要: 理解 动态规划是将原始问题分解为若干个子问题,对子问题进行求解,并记录下子问题的结果,当求解包含已经解决的子问题的原问题时,返回子问题的结果即可 基本概念 转移方程、边界 最优子结构 引例 数塔问题 在如上数塔中,选取一条路径使得路径上的数字和最大 解: 设数塔表示为$f[i][j]$,$dp[i] 阅读全文
posted @ 2019-05-10 16:23 十三w~w 阅读(155) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页