自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 【leetcode】【hard】25. Reverse Nodes in k-Group

25.Reverse Nodes in k-Group Given a linked list, reverse the nodes of a linked listkat a time and return its modified list. kis a positive integer and is less than or equal to the length of the ...

2020-01-14 19:16:00 77

原创 【leetcode】【easy】83. Remove Duplicates from Sorted List

83.Remove Duplicates from Sorted List Given a sorted linked list, delete all duplicates such that each element appear onlyonce. Example 1: Input: 1->1->2 Output: 1->2 Example 2: Inp...

2020-01-14 18:15:35 74

原创 【Paper Reading】Early prediction of the future popularity of uploaded videos

论文链接:https://sci-hub.tw/10.1016/j.eswa.2019.05.015 文章是针对youtube视频推荐冷启动问题提出的方法,在视频发布时刻预测未来1~9周时刻的流行度。论文主要内容在于特征的特征工程。 由于论文比较简单,下面不会对论文进行详细翻译,只说明其重要思想。 精读指数:建议粗读 先进指数:一个工程型方法 总体评价:像一个实验报告,缺少原理分析,缺少...

2020-01-14 12:40:24 274

原创 【leetcode】【medium】147. Insertion Sort List

147.Insertion Sort List Sort a linked list using insertion sort. A graphical example of insertion sort. The partial sorted list (black) initially contains only the first element in the list. With ...

2020-01-03 15:36:58 89

原创 【leetcode】【medium】24. Swap Nodes in Pairs

24.Swap Nodes in Pairs Given alinked list, swap every two adjacent nodes and return its head. You maynotmodify the values in the list's nodes, only nodes itself may be changed. Example: Given...

2020-01-02 18:21:53 82

原创 【leetcode】【easy】21. Merge Two Sorted Lists

21.Merge Two Sorted Lists Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. Example: Input: 1->2-&gt...

2020-01-02 16:56:12 65

原创 【leetcode】【medium】82. Remove Duplicates from Sorted List II

82. Remove Duplicates from Sorted List II Given a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list. Example 1: Input: 1->2-...

2020-01-02 15:28:19 83 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除