[关闭]
@nrailgun 2017-08-10T09:39:15.000000Z 字数 272 阅读 1011

Inverted index

程序设计


倒排索引(inverted index)也称为反向索引。

Example

From sentences

T_0 = "it is what it is"
T_1 = "what is it"
T_2 = "it is a banana"

We can form inverted indexes:

  1. "a": {2}
  2. "banana": {2}
  3. "is": {0, 1, 2}
  4. "it": {0, 1, 2}
  5. "what": {0, 1}

Searching for ('what', 'is', 'it') obtains .

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注