03 2020 档案

tmp-动态规划-迷宫走法
摘要: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, 阅读全文

posted @ 2020-03-31 16:35 TMatrix52 阅读(176) 评论(0) 推荐(0) 编辑

分治法-合并K个有序链表
摘要:https://blog.csdn.net/geekmanong/article/details/51559273 https://blog.csdn.net/why_still_confused/article/details/51755899 分治法的设计思想:将一个难以直接解决的大问题,分割成 阅读全文

posted @ 2020-03-30 23:05 TMatrix52 阅读(326) 评论(0) 推荐(0) 编辑

回溯法-走迷宫
摘要:https://blog.csdn.net/YF_Li123/article/details/70294690 阅读全文

posted @ 2020-03-30 10:16 TMatrix52 阅读(108) 评论(0) 推荐(0) 编辑

Sampling-Bias-Corrected Neural Modeling for Large Corpus Item Recommendations
摘要: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/ 阅读全文

posted @ 2020-03-29 22:52 TMatrix52 阅读(606) 评论(0) 推荐(0) 编辑

动态规划---01背包问题
摘要: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( 阅读全文

posted @ 2020-03-29 21:36 TMatrix52 阅读(89) 评论(0) 推荐(0) 编辑

atoi函数实现
摘要:#include<iostream> #include <stdio.h> #include <stack> #include <string> #include <vector> #include <math.h> #include <limits.h> using namespace std; 阅读全文

posted @ 2020-03-29 17:09 TMatrix52 阅读(130) 评论(0) 推荐(0) 编辑

动态规划-最长公共子序列&最长公共子串
摘要:https://blog.csdn.net/lisonglisonglisong/article/details/41548557 https://www.kancloud.cn/digest/pieces-algorithm/163624 https://zhuanlan.zhihu.com/p/ 阅读全文

posted @ 2020-03-29 14:54 TMatrix52 阅读(130) 评论(0) 推荐(0) 编辑

逻辑回归 logistics regression 公式推导
摘要:https://zhuanlan.zhihu.com/p/44591359 阅读全文

posted @ 2020-03-26 18:28 TMatrix52 阅读(91) 评论(0) 推荐(0) 编辑

下载anaconda -清华大学开源软件镜像站
摘要:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 阅读全文

posted @ 2020-03-26 14:01 TMatrix52 阅读(904) 评论(0) 推荐(0) 编辑

谷歌机器学习
摘要:https://developers.google.com/machine-learning/crash-course/regularization-for-simplicity/video-lecture?hl=zh-cn 阅读全文

posted @ 2020-03-25 12:43 TMatrix52 阅读(104) 评论(0) 推荐(0) 编辑

Pycharm使用conda安装的环境
摘要:https://zhuanlan.zhihu.com/p/39542494 阅读全文

posted @ 2020-03-25 11:15 TMatrix52 阅读(534) 评论(0) 推荐(0) 编辑

Deep Interest Network for Click-Through Rate Prediction
摘要:https://zhuanlan.zhihu.com/p/39439947 https://zhuanlan.zhihu.com/p/54085498 视频:http://www.itdks.com/Home/Course/detail?id=3166 阅读全文

posted @ 2020-03-24 08:08 TMatrix52 阅读(120) 评论(0) 推荐(0) 编辑

选择排序
摘要:https://www.cnblogs.com/kkun/archive/2011/11/23/2260281.html#include<iostream> #include <stdio.h> #include <stack> using namespace std; void select_so 阅读全文

posted @ 2020-03-23 12:19 TMatrix52 阅读(99) 评论(0) 推荐(0) 编辑

反转链表
摘要:#include<iostream> #include <stack> #include <algorithm> #include <string> using namespace std; typedef struct ListNode { int data; struct ListNode* n 阅读全文

posted @ 2020-03-21 20:22 TMatrix52 阅读(133) 评论(0) 推荐(0) 编辑

409. 最长回文串
摘要:给定一个包含大写字母和小写字母的字符串,找到通过这些字母构造成的最长的回文串。 在构造过程中,请注意区分大小写。比如 "Aa" 不能当做一个回文字符串。 注意:假设字符串的长度不会超过 1010。 示例 1: 输入: "abccccdd" 输出: 7 解释: 我们可以构造的最长的回文串是"dccac 阅读全文

posted @ 2020-03-19 15:26 TMatrix52 阅读(121) 评论(0) 推荐(0) 编辑

Python 模块 | multiprocessing
摘要:https://juejin.im/post/5c07b27af265da611b58234c multiprocessing.Process multiprocessing.Queue 阅读全文

posted @ 2020-03-17 17:17 TMatrix52 阅读(112) 评论(0) 推荐(0) 编辑

Tree-based Deep Match --- 深度树匹配模型(TDM)
摘要:https://blog.csdn.net/XindiOntheWay/article/details/85220342 https://www.jianshu.com/p/ef3caa5672c8 https://myslide.cn/slides/10614# https://github.co 阅读全文

posted @ 2020-03-17 14:53 TMatrix52 阅读(1095) 评论(0) 推荐(0) 编辑

lr
摘要: 阅读全文

posted @ 2020-03-02 17:09 TMatrix52 阅读(103) 评论(0) 推荐(0) 编辑

numpy.pad 用法
摘要: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 阅读全文

posted @ 2020-03-01 17:09 TMatrix52 阅读(153) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

点击右上角即可分享
微信分享提示