DP
文章平均质量分 95
Nahida_nora
这个作者很懒,什么都没留下…
展开
-
leetcode 1235
函数对象是指可以像函数一样被调用的对象。在C++中,函数对象可以是函数指针、函数、Lambda 表达式或重载了函数调用运算符operator()的类对象。函数对象可以作为参数传递给标准库中的算法,如std::sort等,用于指定算法的行为。这种方式使得算法更加灵活,可以根据不同的需求使用不同的比较方式或操作方式。函数调用运算符operator():重载了这个运算符的类对象可以像函数一样被调用。当对象被调用时,operator()会被执行。Lambda 表达式。原创 2024-05-05 23:59:08 · 802 阅读 · 0 评论 -
Leetcode 494 Target Sum
LC 494 Target SumQuestion:You are given a list of non-negative integers, a1, a2, …, an, and a target, S. Now you have 2 symbols “+” and “-” . For each integer, you should choose one from “+” and “-”...原创 2020-02-17 07:27:15 · 89 阅读 · 0 评论 -
Leetcode 64. Minimum Path Sum
Leetcode 64. Minimum Path SumWe use an extra matrix dp of the same size as the original matrix. In this matrix, dp(i, j) represents the minimum sum of the path from the index (i, j) to the bottom rightmost element. We start by initializing the bottom righ原创 2020-06-04 08:15:30 · 117 阅读 · 0 评论