摘要:https://www.cnblogs.com/Kobe10/p/6357526.html#include <iostream> using namespace std; //dp[i][j] = dp[i-1][j] + dp[i][j-1]; int get_steps_num(int* a,
阅读全文
摘要:https://blog.csdn.net/geekmanong/article/details/51559273 https://blog.csdn.net/why_still_confused/article/details/51755899 分治法的设计思想:将一个难以直接解决的大问题,分割成
阅读全文
摘要:https://blog.csdn.net/YF_Li123/article/details/70294690
阅读全文
摘要:https://cloud.tencent.com/developer/article/1556169 http://yougth.top/2019/09/21/2019Recsys%E5%8F%82%E4%BC%9A%E6%B5%81%E6%B0%B4%E8%AE%B0%E5%BD%95/
阅读全文
摘要:https://www.cnblogs.com/christal-r/p/dynamic_programming.html 定义V(i,j):当前背包容量 j,前 i 个物品最佳组合对应的价值; 其中V(i-1,j)表示不装,V(i-1,j-w(i))+v(i) 表示装了第i个商品,背包容量减少w(
阅读全文
摘要:#include<iostream> #include <stdio.h> #include <stack> #include <string> #include <vector> #include <math.h> #include <limits.h> using namespace std;
阅读全文
摘要:https://blog.csdn.net/lisonglisonglisong/article/details/41548557 https://www.kancloud.cn/digest/pieces-algorithm/163624 https://zhuanlan.zhihu.com/p/
阅读全文
摘要:https://zhuanlan.zhihu.com/p/44591359
阅读全文
摘要:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
阅读全文
摘要:https://developers.google.com/machine-learning/crash-course/regularization-for-simplicity/video-lecture?hl=zh-cn
阅读全文
摘要:https://zhuanlan.zhihu.com/p/39542494
阅读全文
摘要:https://zhuanlan.zhihu.com/p/39439947 https://zhuanlan.zhihu.com/p/54085498 视频:http://www.itdks.com/Home/Course/detail?id=3166
阅读全文
摘要:https://www.cnblogs.com/kkun/archive/2011/11/23/2260281.html#include<iostream> #include <stdio.h> #include <stack> using namespace std; void select_so
阅读全文
摘要:#include<iostream> #include <stack> #include <algorithm> #include <string> using namespace std; typedef struct ListNode { int data; struct ListNode* n
阅读全文
摘要:给定一个包含大写字母和小写字母的字符串,找到通过这些字母构造成的最长的回文串。 在构造过程中,请注意区分大小写。比如 "Aa" 不能当做一个回文字符串。 注意:假设字符串的长度不会超过 1010。 示例 1: 输入: "abccccdd" 输出: 7 解释: 我们可以构造的最长的回文串是"dccac
阅读全文
摘要:https://juejin.im/post/5c07b27af265da611b58234c multiprocessing.Process multiprocessing.Queue
阅读全文
摘要:https://blog.csdn.net/XindiOntheWay/article/details/85220342 https://www.jianshu.com/p/ef3caa5672c8 https://myslide.cn/slides/10614# https://github.co
阅读全文
摘要:https://docs.scipy.org/doc/numpy/reference/generated/numpy.pad.htmlhttps://cugtyt.github.io/blog/2017/11022006.html>>> import numpy as np >>> a = np.a
阅读全文