<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
        <title>Hash Table - 标签 - zwyyy456&#39;s blog</title>
        <link>https://doit.tellm.eu.org/zh/tags/hash-table/</link>
        <description>Hash Table - 标签 - zwyyy456&#39;s blog</description>
        <generator>Hugo -- gohugo.io</generator><language>zh</language><managingEditor>zwyyy456@hotmail.com (zwyyy456)</managingEditor>
            <webMaster>zwyyy456@hotmail.com (zwyyy456)</webMaster><copyright>This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.</copyright><lastBuildDate>Wed, 31 May 2023 16:36:04 &#43;0800</lastBuildDate><atom:link href="https://doit.tellm.eu.org/zh/tags/hash-table/" rel="self" type="application/rss+xml" /><item>
    <title>LRU 算法与 LFU 算法</title>
    <link>https://doit.tellm.eu.org/zh/lru_lfu/</link>
    <pubDate>Wed, 31 May 2023 16:36:04 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/lru_lfu/</guid>
    <description><![CDATA[1 算法介绍 1.1 LRULRU 全称是 Least Recently Used，即最近最久未使用算法。 LRU 根据数据的历史访问记录来进行淘汰数据，其核心思想是“如果数据最近被访问过，那么将来]]></description>
</item><item>
    <title>字符串哈希算法</title>
    <link>https://doit.tellm.eu.org/zh/string_hash/</link>
    <pubDate>Mon, 15 May 2023 11:52:54 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/string_hash/</guid>
    <description><![CDATA[1 问题描述考虑 1044. 最长重复子串 (Hard)，本题思路并不难，可以使用二分答案来解决，假设答案为 mid，那么长度大于 mid 的子串在 s 中只会出现一次，]]></description>
</item><item>
    <title>442.数组中重复的数据 (Medium)</title>
    <link>https://doit.tellm.eu.org/zh/442.find-all-duplicates-in-an-array/</link>
    <pubDate>Tue, 28 Mar 2023 14:45:12 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/442.find-all-duplicates-in-an-array/</guid>
    <description><![CDATA[1 问题描述442. 数组中重复的数据 (Medium) 给你一个长度为 n 的整数数组 nums ，其中 nums 的所有整数都在范围 [1, n] 内，且每个整数出现 一次 或 两次 。请你找出所有出现]]></description>
</item><item>
    <title>41.缺失的第一个正数 (Hard)</title>
    <link>https://doit.tellm.eu.org/zh/41.first-missing-positive/</link>
    <pubDate>Tue, 28 Mar 2023 11:44:15 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/41.first-missing-positive/</guid>
    <description><![CDATA[1 问题描述41. 缺失的第一个正数 (Hard) 给你一个未排序的整数数组 nums ，请你找出其中没有出现的最小的正整数。 请你实现时间复杂度为 O(n) 并且只使用常数级别额]]></description>
</item><item>
    <title>面试题 17.05.  字母与数字 (Medium)</title>
    <link>https://doit.tellm.eu.org/zh/interview-17.05/</link>
    <pubDate>Sat, 11 Mar 2023 15:31:57 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/interview-17.05/</guid>
    <description><![CDATA[1 问题描述面试题 17.05. 字母与数字 (Medium) 给定一个放有字母和数字的数组，找到最长的子数组，且包含的字母和数字的个数相同。 返回该子数组，若存在多个最长子数]]></description>
</item><item>
    <title>1590.使数组和能被 P 整除 (Medium)</title>
    <link>https://doit.tellm.eu.org/zh/1590.make-sum-divisible-by-p/</link>
    <pubDate>Fri, 10 Mar 2023 09:31:15 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/1590.make-sum-divisible-by-p/</guid>
    <description><![CDATA[1 问题描述1590. 使数组和能被 P 整除 (Medium) 给你一个正整数数组 nums，请你移除 最短 子数组（可以为 空），使得剩余元素的 和 能被 p 整除。 不允许 将整个]]></description>
</item><item>
    <title>560. 和为 K 的子数组 (Medium)</title>
    <link>https://doit.tellm.eu.org/zh/560.subarray-sum-equals-k/</link>
    <pubDate>Tue, 07 Mar 2023 15:28:36 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/560.subarray-sum-equals-k/</guid>
    <description><![CDATA[1 问题描述560. 和为 K 的子数组 (Medium) 给你一个整数数组 nums 和一个整数 k ，请你统计并返回 该数组中和为 k 的连续子数组的个数 。 示例 1： text 输入：nums =]]></description>
</item><item>
    <title>2584.分割数组使乘积互质 (Medium)</title>
    <link>https://doit.tellm.eu.org/zh/2584.split-the-array-to-make-coprime-products/</link>
    <pubDate>Mon, 06 Mar 2023 18:56:18 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/2584.split-the-array-to-make-coprime-products/</guid>
    <description><![CDATA[1 问题描述2584. 分割数组使乘积互质 (Medium) 给你一个长度为 n 的整数数组 nums ，下标从 0 开始。 如果在下标 i 处 分割 数组，其中 0 &lt;= i &lt;= n - 2 ，使前 i + 1 个]]></description>
</item><item>
    <title>982.按位与为零的三元组 (Hard)</title>
    <link>https://doit.tellm.eu.org/zh/982.triples-with-bitwise-and-equal-to-zero/</link>
    <pubDate>Sat, 04 Mar 2023 14:41:19 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/982.triples-with-bitwise-and-equal-to-zero/</guid>
    <description><![CDATA[1 问题描述982. 按位与为零的三元组 (Hard) 给你一个整数数组 nums ，返回其中 按位与三元组 的数目。 按位与三元组 是由下标 (i, j, k) 组成的三元组，并满足下述全部]]></description>
</item><item>
    <title>1487.保证文件名唯一 (Medium)</title>
    <link>https://doit.tellm.eu.org/zh/1487.making-file-names-unique/</link>
    <pubDate>Fri, 03 Mar 2023 09:40:07 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/1487.making-file-names-unique/</guid>
    <description><![CDATA[1 问题描述1487. 保证文件名唯一 (Medium) 给你一个长度为 n 的字符串数组 names 。你将会在文件系统中创建 n 个文件夹：在第 i 分钟，新建名为 names[i] 的文件夹。 由于两]]></description>
</item></channel>
</rss>
