梦想游戏-博客
书山有路勤为径
网站导航
作品展示
全栈开发引擎
作品存档
博客-OSC
Gitee
Github
留言板
公众号
关于
分类目录
algorithm
(52)
C/C++
(104)
游戏开发
(62)
Unity
(102)
现代C++
(15)
Unreal Engine
(1)
未分类
(34)
Cocos2dx
(36)
软件架构
(22)
C#
(11)
QT
(6)
OpenGL
(8)
Node.js
(15)
机器学习
(3)
脚本语言
(13)
读书笔记
(12)
项目反思
(3)
Go
(3)
Linux
(12)
汇编
(7)
转载
(1)
Private
(1)
数据统计
总计文章:
514
总字数:
319476
累计访问:
111727
运行天数:
3895
leetcode-392. Is Subsequence-DP-NORMAL
Given a string s and a string t, check if s is sub…
leetcode-DP- 303. Range Sum Query – Immutable
Given an integer array nums, find the sum of …
DP-最长公共子序列
套路:最长 , 最优,最大,最小,最长,计数 先写出递归式 string sa = "ab…
DP-01背包
套路:最大值 , 最优,最大,最小,最长,计数 01背包是在M件物品取出若干件放…
DP-N*M棋盘走法
套路:计数问题 , 最优,最大,最小,最长,计数 N*M的棋盘上,小兵要从左下角…
DP阶乘
先写出暴力递归解法 int f(int n) { if (n > 1) { return f(n -…
DP斐波那契数列
先写出暴力算法 int ff(int n) { if (n >2) { return ff(n - …
leetcode-198. House Robber
You are a professional robber planning to rob hous…
leetcode-Wiggle Subsequence-376
For example, [1,7,4,9,2,5] is a wiggle s…
Http服务器-第七步对lua添加SQL支持
C++封装一层,然后给lua用, SQLInterface.cpp #include "mysql/…
←
1
…
23
24
25
26
27
28
29
…
52
→
作品展示
全栈开发引擎
作品存档
博客-OSC
Gitee
Github
留言板
公众号
关于
Scroll Up