
data-structure
文章平均质量分 94
Senit_Co
这个作者很懒,什么都没留下…
展开
-
链表问题集锦(一)
原文站点:https://senitco.github.io/2018/02/01/data-structure-linkedlist/ 将数据结构中一些经典的链表问题做一个总结归纳。 单链表结点定义: struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {原创 2018-02-02 14:26:50 · 586 阅读 · 0 评论 -
链表问题集锦(二)
原文站点:https://senitco.github.io/2018/02/02/data-structure-linkedlist-2/ 数据结构中经典链表问题总结归纳,接上一篇链表问题集锦(一) 单链表逆转 题目描述:给定一个单链表,将其逆转。LeetCode 分析:迭代法求解,借助三个指针start、head、next,start指向逆转后(已重排)的第一个结点,head指向未原创 2018-02-02 15:50:02 · 339 阅读 · 0 评论 -
二叉树问题集锦
原文站点:https://senitco.github.io/2018/02/03/data-structure-binary-tree/ 数据结构中经典二叉树问题的总结归纳。 二叉树结点定义: struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val原创 2018-02-03 16:34:10 · 383 阅读 · 0 评论 -
动态规划(Dynamic Programming)问题集锦
原文站点:https://senitco.github.io/2018/02/04/data-structure-dynamic-programming-1/ 数据结构与算法中动态规划问题的总结归纳。 Word Break 题目描述:LeetCode Given a non-empty string s and a dictionary wordDict containing a li...原创 2018-02-27 19:21:58 · 665 阅读 · 0 评论 -
动态规划(Dynamic Programming)问题集锦(二)
数据结构与算法中动态规划问题的总结归纳。 原文站点:https://senitco.github.io/2018/02/06/data-structure-dynamic-programming-2/ Maximum Subarray 题目描述:Find the contiguous subarray within an array (containing at least one ...原创 2018-03-09 16:44:48 · 472 阅读 · 0 评论 -
深度优先遍历与广度优先遍历(一)
原文站点:https://senitco.github.io/2018/02/18/data-structure-dfs-bfs-1/ 数据结构与算法中深度优先遍历(DFS)与广度优先遍历(BFS)问题总结归纳。 Clone Graph 题目描述:LeetCode Clone an undirected graph. Each node in the graph contains a ...原创 2018-03-04 12:25:42 · 525 阅读 · 0 评论 -
深度优先遍历与广度优先遍历(二)
原文站点:https://senitco.github.io/2018/02/20/data-structure-dfs-bfs-2/ 数据结构与算法中深度优先遍历(DFS)与广度优先遍历(BFS)问题总结归纳。 Word Ladder 题目描述:LeetCode Given two words (beginWord and endWord), and a dictionary’s w...原创 2018-03-04 12:27:14 · 311 阅读 · 0 评论 -
二叉树与深度优先遍历
原文站点:https://senitco.github.io/2018/02/23/data-structure-dfs-bfs-3/ 数据结构与算法中利用深度优先遍历(DFS)借助二叉树问题。 二叉树结点定义: struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(in...原创 2018-03-12 22:37:23 · 570 阅读 · 0 评论 -
二叉树与深度优先遍历(二)
数据结构与算法中利用深度优先遍历(DFS)借助二叉树问题。 原文站点:https://senitco.github.io/2018/02/24/data-structure-BiTree-dfs-2/ Convert Sorted Array to Binary Search Tree 题目描述:Given an array where elements are sorted in as...原创 2018-03-23 15:46:10 · 524 阅读 · 0 评论