<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>LeetCode on Ge Zhang · 技术笔记</title>
    <link>https://zhangge.dev/series/leetcode/</link>
    <description>Recent content in LeetCode on Ge Zhang · 技术笔记</description>
    <image>
      <title>Ge Zhang · 技术笔记</title>
      <url>https://zhangge.dev/images/site-card.png</url>
      <link>https://zhangge.dev/images/site-card.png</link>
    </image>
    <generator>Hugo</generator>
    <language>zh-CN</language>
    <copyright>2026 Ge Zhang</copyright>
    <lastBuildDate>Sat, 08 Aug 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://zhangge.dev/series/leetcode/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>1. 两数之和</title>
      <link>https://zhangge.dev/leetcode/two-sum/</link>
      <pubDate>Sat, 08 Aug 2026 00:00:00 +0000</pubDate>
      <guid>https://zhangge.dev/leetcode/two-sum/</guid>
      <description>记录两数之和的哈希表一次遍历写法：遍历当前数字时，在哈希表中查找 target - 当前值是否已经出现。</description>
    </item>
    <item>
      <title>146. LRU 缓存</title>
      <link>https://zhangge.dev/leetcode/lru-cache/</link>
      <pubDate>Tue, 14 Jul 2026 00:00:00 +0000</pubDate>
      <guid>https://zhangge.dev/leetcode/lru-cache/</guid>
      <description>记录 LRU 缓存的经典实现：哈希表负责 O(1) 查找，双向链表负责维护最近使用顺序。</description>
    </item>
    <item>
      <title>51. N 皇后</title>
      <link>https://zhangge.dev/leetcode/n-queens/</link>
      <pubDate>Tue, 14 Jul 2026 00:00:00 +0000</pubDate>
      <guid>https://zhangge.dev/leetcode/n-queens/</guid>
      <description>记录 N 皇后问题的经典回溯写法：按行放置皇后，检查列和两条对角线是否合法，并在回溯时恢复棋盘状态。</description>
    </item>
    <item>
      <title>LCR 053. 二叉搜索树中的中序后继</title>
      <link>https://zhangge.dev/leetcode/inorder-successor-in-bst/</link>
      <pubDate>Tue, 14 Jul 2026 00:00:00 +0000</pubDate>
      <guid>https://zhangge.dev/leetcode/inorder-successor-in-bst/</guid>
      <description>记录二叉搜索树中序后继问题的三种写法：中序遍历记录节点、遍历全树维护候选答案，以及利用 BST 性质迭代查找。</description>
    </item>
  </channel>
</rss>
