Skip to content

Commit

Permalink
Site updated: 2024-01-02 19:21:03
Browse files Browse the repository at this point in the history
  • Loading branch information
blackfrog638 committed Jan 2, 2024
1 parent 6bda26b commit ff36267
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions 2020/02/24/浅谈后缀数组算法/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
<meta name="author" content="John Doe">
<meta name="keywords" content="">

<meta name="description" content="浅谈后缀数组算法 后缀数组(suffix array)是一个通过对字符串的所有后缀经过排序后得到的数组。 后缀数组同时也是后缀树的一个替代品,它比后缀树更好写,所以OIers通常会使用后缀数组,而非后缀树。 参考资料(转侵删): xminh的blog 后缀数组-Wikipedia 国家集训队2009论文 基数排序-百度百科 《算法竞赛入门经典》刘汝佳 前言 最近看到了一些将后缀数组的文章,">
<meta name="description" content="后缀数组(suffix array)是一个通过对字符串的所有后缀经过排序后得到的数组。后缀数组同时也是后缀树的一个替代品,它比后缀树更好写,所以OIers通常会使用后缀数组,而非后缀树。">
<meta property="og:type" content="article">
<meta property="og:title" content="【洛谷日报】浅谈后缀数组算法">
<meta property="og:url" content="http://example.com/2020/02/24/%E6%B5%85%E8%B0%88%E5%90%8E%E7%BC%80%E6%95%B0%E7%BB%84%E7%AE%97%E6%B3%95/index.html">
<meta property="og:site_name" content="Hexo">
<meta property="og:description" content="浅谈后缀数组算法 后缀数组(suffix array)是一个通过对字符串的所有后缀经过排序后得到的数组。 后缀数组同时也是后缀树的一个替代品,它比后缀树更好写,所以OIers通常会使用后缀数组,而非后缀树。 参考资料(转侵删): xminh的blog 后缀数组-Wikipedia 国家集训队2009论文 基数排序-百度百科 《算法竞赛入门经典》刘汝佳 前言 最近看到了一些将后缀数组的文章,">
<meta property="og:description" content="后缀数组(suffix array)是一个通过对字符串的所有后缀经过排序后得到的数组。后缀数组同时也是后缀树的一个替代品,它比后缀树更好写,所以OIers通常会使用后缀数组,而非后缀树。">
<meta property="og:locale" content="zh_CN">
<meta property="og:image" content="https://cdn.luogu.com.cn/upload/image_hosting/838huxxs.png">
<meta property="og:image" content="https://cdn.luogu.com.cn/upload/image_hosting/myq8g4q8.png">
Expand All @@ -32,7 +32,7 @@
<meta property="og:image" content="https://cdn.luogu.com.cn/upload/image_hosting/g4aqb00f.png">
<meta property="og:image" content="https://cdn.luogu.com.cn/upload/image_hosting/7ajzp9nc.png">
<meta property="article:published_time" content="2020-02-24T14:45:35.000Z">
<meta property="article:modified_time" content="2024-01-01T15:19:14.146Z">
<meta property="article:modified_time" content="2024-01-02T11:19:21.592Z">
<meta property="article:author" content="John Doe">
<meta property="article:tag" content="算法">
<meta property="article:tag" content="后缀数组">
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ <h2 class="index-header">

<a class="index-excerpt index-excerpt__noimg" href="/2020/02/24/%E6%B5%85%E8%B0%88%E5%90%8E%E7%BC%80%E6%95%B0%E7%BB%84%E7%AE%97%E6%B3%95/" target="_self">
<div>
浅谈后缀数组算法 后缀数组(suffix array)是一个通过对字符串的所有后缀经过排序后得到的数组。 后缀数组同时也是后缀树的一个替代品,它比后缀树更好写,所以OIers通常会使用后缀数组,而非后缀树。 参考资料(转侵删): xminh的blog 后缀数组-Wikipedia 国家集训队2009论文 基数排序-百度百科 《算法竞赛入门经典》刘汝佳 前言 最近看到了一些将后缀数组的文章,
后缀数组(suffix array)是一个通过对字符串的所有后缀经过排序后得到的数组。后缀数组同时也是后缀树的一个替代品,它比后缀树更好写,所以OIers通常会使用后缀数组,而非后缀树。
</div>
</a>

Expand Down

0 comments on commit ff36267

Please sign in to comment.