Algorithms: https://leetcode-cn.com/problems/next-greater-node-in-linked-list/ 链表中下一个更大的值,双层循环及优化,后面看可以栈处理,学习了 Review: “Can You Avoid Functional Progr ...
分类:
其他好文 时间:
2019-07-14 22:38:59
阅读次数:
130
其他操作 memset 使用memset初始化vector include 需要注意的是:对于set和map而言,find并不是第一个满足条件的对象位置,而是其中的任意一个对象。 Standard Template Library: Algorithms 全排列 序列升序 next_permutat ...
分类:
其他好文 时间:
2019-07-05 09:37:00
阅读次数:
264
planning algorithms chapter 2 :Discrete Planning 离散可行规划导论 问题定义 在离散规划中,状态是“可数”的,有限的。 离散可行规划: 1. 非空状态空间 X 2. 对于每个状态 x,存在一个有限的动作空间 U(x) 3. 对于每个状态和动作空间,存在 ...
分类:
其他好文 时间:
2019-07-03 17:11:07
阅读次数:
103
chapter 1 介绍 什么是规划? 在机器人领域,运动规划和轨迹规划主要用来解决“怎么移动钢琴”的问题,这个问题是如何将钢琴从一个房间移动到另一个房间,并且保证钢琴不和其他事物发生碰撞。 在控制领域,运动规划主要指求解非线性动态系统的一组输入,驱使该系统从一种初始状态到达一种指定的目标状态。比如 ...
分类:
其他好文 时间:
2019-07-03 16:42:56
阅读次数:
81
Algorithms: https://leetcode-cn.com/problems/repeated-substring-pattern/ 重复子字符串 Review: “I’m Leaving Google?—?and Here’s the Real Deal Behind Google C ...
分类:
其他好文 时间:
2019-07-01 00:43:26
阅读次数:
95
Longge is good at mathematics and he likes to think about hard mathematical problems which will be solved by some graceful algorithms. Now a problem c ...
分类:
其他好文 时间:
2019-06-19 20:07:54
阅读次数:
107
Algorithms: https://leetcode-cn.com/problems/longest-palindromic-substring/ 中心扩展法首先考虑,当然看到有个动态规划,一直很难理解。动态规划要好好研究一番。 Review: https://link.medium.com/r ...
分类:
其他好文 时间:
2019-06-17 01:09:40
阅读次数:
106
Algorithms: https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/ 采用了map的存储,然后移动窗口方式解决此问题,当然看到有个动态规划,一直很难理解。 Review: https: ...
分类:
其他好文 时间:
2019-06-10 00:11:08
阅读次数:
84
leetcode algorithms 109. Convert Sorted List to Binary Search Tree Given a singly linked list where elements are sorted in ascending order, convert it ...
分类:
其他好文 时间:
2019-06-09 22:20:42
阅读次数:
89
[TOC] "Proximal Algorithms" 这一节,作者总结了一些关于proximal的一些直观解释 Moreau Yosida regularization 内部卷积(infimal convolution): $$ (f \: \Box \: g)(v)=\inf_x (f(x)+g ...
分类:
其他好文 时间:
2019-06-09 00:21:50
阅读次数:
112