关于通过标签取得相关文章的算法

比如有10000篇文章,每篇可能有0-10个标签,不同的标签共有1000个,用什么算法能最快地获取与指定文章相关度最高的其它文章?

用一个1000bit(归约为1024bit)数据类型来记录每篇文章包含了哪些标签,然后对这个数据进行与运算,以结果里出现的1的个数为标准排序即可。

规模大约为:
数据传输:1024bit=128Byte, 128Byte*10000=128B*10K=1MB(可以缓存,不是太大)
数据运算:比较次数为10000,每次比较1024bit。

得写个示例程序测试一下可行性。

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;

public class Test
{
 
static readonly int tagsCount=3000;
 
static readonly int articleCount=30000;
 
static List<BitArray> articleTags=new List<BitArray>(articleCount);


 
public static void Main()
 {
  Stopwatch sw
=new Stopwatch();
  sw.Start();
  
for(int i=0; i<articleCount; i++)
  {
    articleTags.Add(
new BitArray(tagsCount));
  }
  List
<CountAndIndex> countsAndIndex=new List<CountAndIndex>(articleCount);
  
for(int i=0; i<articleCount; i++)
  {
   countsAndIndex.Add(
new CountAndIndex(Count(articleTags[0].And(articleTags[i])), i));
  }
  countsAndIndex.Sort();
  sw.Stop();
  Console.WriteLine(sw.Elapsed);
 }

 
static int Count(BitArray bits)
 {
  
int result=0;
  
foreach(bool bit in bits)
  {
   
if(bit)
    
++result;
  }
  
return result;
 }
}

struct CountAndIndex : IComparable<CountAndIndex>
{
 
public int Count;
 
public int Index;

 
public CountAndIndex(int count, int index)
 {
  Count
=count;
  Index
=index;
 }

 
public int CompareTo(CountAndIndex other)
 {
  
return this.Count.CompareTo(other.Count);
 }
}

1K Tags * 10K articles: 00:00:00.4684715
2K Tags * 20K articles: 00:00:01.7932927
3K tags * 30K articles: 00:00:04.0203271
10K tags * 100K articles: 00:00:44.2125127

基本上与问题规模成线性比例。

规模小于1K*10K时可以即时运算;
大一点可以提供后台运行的服务,异步延迟加载;
大于3K*30K就得在数据库里缓存结果了。

posted on   deerchao  阅读(1296)  评论(0编辑  收藏  举报

编辑推荐:
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· 从HTTP原因短语缺失研究HTTP/2和HTTP/3的设计差异
· 三行代码完成国际化适配,妙~啊~
< 2007年5月 >
29 30 1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31 1 2
3 4 5 6 7 8 9

统计

点击右上角即可分享
微信分享提示