<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>karynsong|BMFE|eros</title>
    <description>活着为了创造不为胜负，新的高度让我看到新的万物</description>
    <link>https://karynsong.github.io</link>
    <atom:link href="https://karynsong.github.io/feed.xml" rel="self" type="application/rss+xml" />
    
      <item>
        <title>机器学习</title>
        <category>江河计划</category>
        <description>算法电话号码的字母组合给定一个仅包含数字 2-9 的字符串，返回所有它能表示的字母组合。给出数字到字母的映射如下（与电话按键相同）。注意 1 不对应任何字母。输入："23"输出：["ad", "...</description>
        <pubDate>2019-02-08 00:00:00 </pubDate>
        <link>https://karynsong.github.io/2019/02/08/121.html</link>
        <guid isPermaLink="true">https://karynsong.github.io/2019/02/08/121.html</guid>
      </item>
    
      <item>
        <title>机器学习</title>
        <category>江河计划</category>
        <description>算法岛屿的个数给定一个由 ‘1’（陆地）和 ‘0’（水）组成的的二维网格，计算岛屿的数量。一个岛被水包围，并且它是通过水平方向或垂直方向上相邻的陆地连接而成的。你可以假设网格的四个边均被水包围。...</description>
        <pubDate>2019-02-01 00:00:00 </pubDate>
        <link>https://karynsong.github.io/2019/02/01/120.html</link>
        <guid isPermaLink="true">https://karynsong.github.io/2019/02/01/120.html</guid>
      </item>
    
      <item>
        <title>2019-01</title>
        <category>江河计划-月总结</category>
        <description>算法二叉树的锯齿形层次遍历给定一个二叉树，返回其节点值的锯齿形层次遍历。（即先从左往右，再从右往左进行下一层遍历，以此类推，层与层之间交替进行）。例如：给定二叉树 [3,9,20,null,nu...</description>
        <pubDate>2019-01-31 00:00:00 </pubDate>
        <link>https://karynsong.github.io/2019/01/31/119.html</link>
        <guid isPermaLink="true">https://karynsong.github.io/2019/01/31/119.html</guid>
      </item>
    
      <item>
        <title>WebGL</title>
        <category>江河计划</category>
        <description>算法二叉搜索树中第K小的元素给定一个二叉搜索树，编写一个函数 kthSmallest 来查找其中第 k 个最小的元素。说明：你可以假设 k 总是有效的，1 ≤ k ≤ 二叉搜索树元素个数。示例 ...</description>
        <pubDate>2019-01-25 00:00:00 </pubDate>
        <link>https://karynsong.github.io/2019/01/25/118.html</link>
        <guid isPermaLink="true">https://karynsong.github.io/2019/01/25/118.html</guid>
      </item>
    
      <item>
        <title>WebGL</title>
        <category>江河计划</category>
        <description>算法填充每个节点的下一个右侧节点指针给定一个完美二叉树，其所有叶子节点都在同一层，每个父节点都有两个子节点。二叉树定义如下：struct Node {  int val;  Node *left...</description>
        <pubDate>2019-01-18 00:00:00 </pubDate>
        <link>https://karynsong.github.io/2019/01/18/117.html</link>
        <guid isPermaLink="true">https://karynsong.github.io/2019/01/18/117.html</guid>
      </item>
    
      <item>
        <title>WebGL</title>
        <category>江河计划</category>
        <description>算法从前序与中序遍历序列构造二叉树根据一棵树的前序遍历与中序遍历构造二叉树。注意:你可以假设树中没有重复的元素。例如，给出前序遍历 preorder = [3,9,20,15,7]中序遍历 in...</description>
        <pubDate>2019-01-11 00:00:00 </pubDate>
        <link>https://karynsong.github.io/2019/01/11/116.html</link>
        <guid isPermaLink="true">https://karynsong.github.io/2019/01/11/116.html</guid>
      </item>
    
      <item>
        <title>WebGL</title>
        <category>江河计划</category>
        <description>算法二叉树的锯齿形层次遍历给定一个二叉树，返回其节点值的锯齿形层次遍历。（即先从左往右，再从右往左进行下一层遍历，以此类推，层与层之间交替进行）。例如：给定二叉树 [3,9,20,null,nu...</description>
        <pubDate>2019-01-04 00:00:00 </pubDate>
        <link>https://karynsong.github.io/2019/01/04/115.html</link>
        <guid isPermaLink="true">https://karynsong.github.io/2019/01/04/115.html</guid>
      </item>
    
      <item>
        <title>2018-12</title>
        <category>江河计划-月总结</category>
        <description>算法两数相加给出两个 非空 的链表用来表示两个非负的整数。其中，它们各自的位数是按照 逆序 的方式存储的，并且它们的每个节点只能存储 一位 数字。如果，我们将这两个数相加起来，则会返回一个新的链...</description>
        <pubDate>2018-12-31 00:00:00 </pubDate>
        <link>https://karynsong.github.io/2018/12/31/114.html</link>
        <guid isPermaLink="true">https://karynsong.github.io/2018/12/31/114.html</guid>
      </item>
    
      <item>
        <title>WebGL</title>
        <category>江河计划</category>
        <description>算法中序遍历二叉树给定一个二叉树，返回它的中序 遍历。示例:输入: [1,null,2,3]   1    \     2    /   3输出: [1,3,2]var inorderTrave...</description>
        <pubDate>2018-12-28 00:00:00 </pubDate>
        <link>https://karynsong.github.io/2018/12/28/113.html</link>
        <guid isPermaLink="true">https://karynsong.github.io/2018/12/28/113.html</guid>
      </item>
    
      <item>
        <title>WebGL</title>
        <category>江河计划</category>
        <description>算法相交链表编写一个程序，找到两个单链表相交的起始节点。输入：intersectVal = 8, listA = [4,1,8,4,5], listB = [5,0,1,8,4,5], skip...</description>
        <pubDate>2018-12-21 00:00:00 </pubDate>
        <link>https://karynsong.github.io/2018/12/21/112.html</link>
        <guid isPermaLink="true">https://karynsong.github.io/2018/12/21/112.html</guid>
      </item>
    
      <item>
        <title>WebGL</title>
        <category>江河计划</category>
        <description>算法奇偶链表给定一个单链表，把所有的奇数节点和偶数节点分别排在一起。请注意，这里的奇数节点和偶数节点指的是节点编号的奇偶性，而不是节点的值的奇偶性。请尝试使用原地算法完成。你的算法的空间复杂度应...</description>
        <pubDate>2018-12-14 00:00:00 </pubDate>
        <link>https://karynsong.github.io/2018/12/14/111.html</link>
        <guid isPermaLink="true">https://karynsong.github.io/2018/12/14/111.html</guid>
      </item>
    
      <item>
        <title>WebGL</title>
        <category>江河计划</category>
        <description>算法两数相加给出两个 非空 的链表用来表示两个非负的整数。其中，它们各自的位数是按照 逆序 的方式存储的，并且它们的每个节点只能存储 一位 数字。如果，我们将这两个数相加起来，则会返回一个新的链...</description>
        <pubDate>2018-12-07 00:00:00 </pubDate>
        <link>https://karynsong.github.io/2018/12/07/110.html</link>
        <guid isPermaLink="true">https://karynsong.github.io/2018/12/07/110.html</guid>
      </item>
    
      <item>
        <title>2018-11</title>
        <category>江河计划-月总结</category>
        <description>算法矩阵置零给定一个 m x n 的矩阵，如果一个元素为 0，则将其所在行和列的所有元素都设为 0。请使用原地算法。var setZeroes = function(matrix) {    v...</description>
        <pubDate>2018-11-30 00:00:00 </pubDate>
        <link>https://karynsong.github.io/2018/11/30/109.html</link>
        <guid isPermaLink="true">https://karynsong.github.io/2018/11/30/109.html</guid>
      </item>
    
  </channel>
</rss>
