基本信息
源码名称:网络爬虫信息检索 C# 倒排索引
源码大小:10.90M
文件格式:.rar
开发语言:C#
更新时间:2023-10-29
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
网络爬虫信息检索 C# 倒排索引
网络信息检索 网络爬虫 倒排索引建立 C# 实现 两个程序 以及实验报告 绝对可以执行

.
├── 爬虫
│   ├── Crawler.exe
│   ├── Crawler工程
│   │   ├── Crawler
│   │   │   ├── Crawler.cs
│   │   │   ├── Crawlers.csproj
│   │   │   ├── Fetcher.cs
│   │   │   ├── FileWriter.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Parser.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── RecentURL.cs
│   │   │   ├── ShowCrawlers.cs
│   │   │   ├── ShowPad.cs
│   │   │   ├── URLHashTable.cs
│   │   │   ├── URLPool.cs
│   │   │   ├── URLPoolGroup.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── ABC.TXT
│   │   │   │       ├── Crawler.exe
│   │   │   │       ├── Crawler.pdb
│   │   │   │       ├── Crawler.vshost.exe
│   │   │   │       ├── Crawler.vshost.exe.manifest
│   │   │   │       ├── LOG
│   │   │   │       ├── NONESCUTURL
│   │   │   │       └── SCUTURL
│   │   │   └── obj
│   │   │       └── Debug
│   │   │           ├── Crawler.Form1.resources
│   │   │           ├── Crawler.Properties.Resources.resources
│   │   │           ├── Crawler.csproj.FileListAbsolute.txt
│   │   │           ├── Crawler.csproj.GenerateResource.Cache
│   │   │           ├── Crawler.exe
│   │   │           ├── Crawler.pdb
│   │   │           ├── Crawlers.csproj.FileListAbsolute.txt
│   │   │           ├── Crawlers.csproj.GenerateResource.Cache
│   │   │           ├── Refactor
│   │   │           └── TempPE
│   │   ├── Crawler.sln
│   │   └── Crawler.suo
│   ├── LOG
│   ├── NONESCUTURL
│   ├── SCUTURL
│   ├── 试验1 爬虫 实验报告.docx
│   └── 安装说明.txt
├── 信息检索
│   ├── InversIndex
│   │   ├── Backup
│   │   │   ├── Analysis
│   │   │   │   ├── ASCIIFoldingFilter.cs
│   │   │   │   ├── Analyzer.cs
│   │   │   │   ├── BaseCharFilter.cs
│   │   │   │   ├── CachingTokenFilter.cs
│   │   │   │   ├── CharArraySet.cs
│   │   │   │   ├── CharFilter.cs
│   │   │   │   ├── CharReader.cs
│   │   │   │   ├── CharStream.cs
│   │   │   │   ├── CharTokenizer.cs
│   │   │   │   ├── CharacterCache.cs
│   │   │   │   ├── ISOLatin1AccentFilter.cs
│   │   │   │   ├── KeywordAnalyzer.cs
│   │   │   │   ├── KeywordTokenizer.cs
│   │   │   │   ├── LengthFilter.cs
│   │   │   │   ├── LetterTokenizer.cs
│   │   │   │   ├── LowerCaseFilter.cs
│   │   │   │   ├── LowerCaseTokenizer.cs
│   │   │   │   ├── MappingCharFilter.cs
│   │   │   │   ├── NormalizeCharMap.cs
│   │   │   │   ├── NumericTokenStream.cs
│   │   │   │   ├── Package.html
│   │   │   │   ├── PerFieldAnalyzerWrapper.cs
│   │   │   │   ├── PorterStemFilter.cs
│   │   │   │   ├── PorterStemmer.cs
│   │   │   │   ├── SimpleAnalyzer.cs
│   │   │   │   ├── SinkTokenizer.cs
│   │   │   │   ├── Standard
│   │   │   │   │   ├── Package.html
│   │   │   │   │   ├── StandardAnalyzer.cs
│   │   │   │   │   ├── StandardFilter.cs
│   │   │   │   │   ├── StandardTokenizer.cs
│   │   │   │   │   ├── StandardTokenizerImpl.cs
│   │   │   │   │   └── StandardTokenizerImpl.jflex
│   │   │   │   ├── StopAnalyzer.cs
│   │   │   │   ├── StopFilter.cs
│   │   │   │   ├── TeeSinkTokenFilter.cs
│   │   │   │   ├── TeeTokenFilter.cs
│   │   │   │   ├── Token.cs
│   │   │   │   ├── TokenFilter.cs
│   │   │   │   ├── TokenStream.cs
│   │   │   │   ├── TokenWrapper.cs
│   │   │   │   ├── Tokenattributes
│   │   │   │   │   ├── FlagsAttribute.cs
│   │   │   │   │   ├── FlagsAttributeImpl.cs
│   │   │   │   │   ├── OffsetAttribute.cs
│   │   │   │   │   ├── OffsetAttributeImpl.cs
│   │   │   │   │   ├── PayloadAttribute.cs
│   │   │   │   │   ├── PayloadAttributeImpl.cs
│   │   │   │   │   ├── PositionIncrementAttribute.cs
│   │   │   │   │   ├── PositionIncrementAttributeImpl.cs
│   │   │   │   │   ├── TermAttribute.cs
│   │   │   │   │   ├── TermAttributeImpl.cs
│   │   │   │   │   ├── TypeAttribute.cs
│   │   │   │   │   └── TypeAttributeImpl.cs
│   │   │   │   ├── Tokenizer.cs
│   │   │   │   ├── WhitespaceAnalyzer.cs
│   │   │   │   ├── WhitespaceTokenizer.cs
│   │   │   │   └── WordlistLoader.cs
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Document
│   │   │   │   ├── AbstractField.cs
│   │   │   │   ├── CompressionTools.cs
│   │   │   │   ├── DateField.cs
│   │   │   │   ├── DateTools.cs
│   │   │   │   ├── Document.cs
│   │   │   │   ├── Field.cs
│   │   │   │   ├── FieldSelector.cs
│   │   │   │   ├── FieldSelectorResult.cs
│   │   │   │   ├── Fieldable.cs
│   │   │   │   ├── LoadFirstFieldSelector.cs
│   │   │   │   ├── MapFieldSelector.cs
│   │   │   │   ├── NumberTools.cs
│   │   │   │   ├── NumericField.cs
│   │   │   │   ├── Package.html
│   │   │   │   └── SetBasedFieldSelector.cs
│   │   │   ├── Index
│   │   │   │   ├── AbstractAllTermDocs.cs
│   │   │   │   ├── AllTermDocs.cs
│   │   │   │   ├── BufferedDeletes.cs
│   │   │   │   ├── ByteBlockPool.cs
│   │   │   │   ├── ByteSliceReader.cs
│   │   │   │   ├── ByteSliceWriter.cs
│   │   │   │   ├── CharBlockPool.cs
│   │   │   │   ├── CheckIndex.cs
│   │   │   │   ├── CompoundFileReader.cs
│   │   │   │   ├── CompoundFileWriter.cs
│   │   │   │   ├── ConcurrentMergeScheduler.cs
│   │   │   │   ├── CorruptIndexException.cs
│   │   │   │   ├── DefaultSkipListReader.cs
│   │   │   │   ├── DefaultSkipListWriter.cs
│   │   │   │   ├── DirectoryOwningReader.cs
│   │   │   │   ├── DirectoryReader.cs
│   │   │   │   ├── DocConsumer.cs
│   │   │   │   ├── DocConsumerPerThread.cs
│   │   │   │   ├── DocFieldConsumer.cs
│   │   │   │   ├── DocFieldConsumerPerField.cs
│   │   │   │   ├── DocFieldConsumerPerThread.cs
│   │   │   │   ├── DocFieldConsumers.cs
│   │   │   │   ├── DocFieldConsumersPerField.cs
│   │   │   │   ├── DocFieldConsumersPerThread.cs
│   │   │   │   ├── DocFieldProcessor.cs
│   │   │   │   ├── DocFieldProcessorPerField.cs
│   │   │   │   ├── DocFieldProcessorPerThread.cs
│   │   │   │   ├── DocInverter.cs
│   │   │   │   ├── DocInverterPerField.cs
│   │   │   │   ├── DocInverterPerThread.cs
│   │   │   │   ├── DocumentsWriter.cs
│   │   │   │   ├── DocumentsWriterThreadState.cs
│   │   │   │   ├── FieldInfo.cs
│   │   │   │   ├── FieldInfos.cs
│   │   │   │   ├── FieldInvertState.cs
│   │   │   │   ├── FieldReaderException.cs
│   │   │   │   ├── FieldSortedTermVectorMapper.cs
│   │   │   │   ├── FieldsReader.cs
│   │   │   │   ├── FieldsWriter.cs
│   │   │   │   ├── FilterIndexReader.cs
│   │   │   │   ├── FormatPostingsDocsConsumer.cs
│   │   │   │   ├── FormatPostingsDocsWriter.cs
│   │   │   │   ├── FormatPostingsFieldsConsumer.cs
│   │   │   │   ├── FormatPostingsFieldsWriter.cs
│   │   │   │   ├── FormatPostingsPositionsConsumer.cs
│   │   │   │   ├── FormatPostingsPositionsWriter.cs
│   │   │   │   ├── FormatPostingsTermsConsumer.cs
│   │   │   │   ├── FormatPostingsTermsWriter.cs
│   │   │   │   ├── FreqProxFieldMergeState.cs
│   │   │   │   ├── FreqProxTermsWriter.cs
│   │   │   │   ├── FreqProxTermsWriterPerField.cs
│   │   │   │   ├── FreqProxTermsWriterPerThread.cs
│   │   │   │   ├── IndexCommit.cs
│   │   │   │   ├── IndexCommitPoint.cs
│   │   │   │   ├── IndexDeletionPolicy.cs
│   │   │   │   ├── IndexFileDeleter.cs
│   │   │   │   ├── IndexFileNameFilter.cs
│   │   │   │   ├── IndexFileNames.cs
│   │   │   │   ├── IndexModifier.cs
│   │   │   │   ├── IndexReader.cs
│   │   │   │   ├── IndexWriter.cs
│   │   │   │   ├── IntBlockPool.cs
│   │   │   │   ├── InvertedDocConsumer.cs
│   │   │   │   ├── InvertedDocConsumerPerField.cs
│   │   │   │   ├── InvertedDocConsumerPerThread.cs
│   │   │   │   ├── InvertedDocEndConsumer.cs
│   │   │   │   ├── InvertedDocEndConsumerPerField.cs
│   │   │   │   ├── InvertedDocEndConsumerPerThread.cs
│   │   │   │   ├── KeepOnlyLastCommitDeletionPolicy.cs
│   │   │   │   ├── LogByteSizeMergePolicy.cs
│   │   │   │   ├── LogDocMergePolicy.cs
│   │   │   │   ├── LogMergePolicy.cs
│   │   │   │   ├── MergeDocIDRemapper.cs
│   │   │   │   ├── MergePolicy.cs
│   │   │   │   ├── MergeScheduler.cs
│   │   │   │   ├── MultiLevelSkipListReader.cs
│   │   │   │   ├── MultiLevelSkipListWriter.cs
│   │   │   │   ├── MultiReader.cs
│   │   │   │   ├── MultipleTermPositions.cs
│   │   │   │   ├── NormsWriter.cs
│   │   │   │   ├── NormsWriterPerField.cs
│   │   │   │   ├── NormsWriterPerThread.cs
│   │   │   │   ├── Package.html
│   │   │   │   ├── ParallelReader.cs
│   │   │   │   ├── Payload.cs
│   │   │   │   ├── PositionBasedTermVectorMapper.cs
│   │   │   │   ├── RawPostingList.cs
│   │   │   │   ├── ReadOnlyDirectoryReader.cs
│   │   │   │   ├── ReadOnlySegmentReader.cs
│   │   │   │   ├── ReusableStringReader.cs
│   │   │   │   ├── SegmentInfo.cs
│   │   │   │   ├── SegmentInfos.cs
│   │   │   │   ├── SegmentMergeInfo.cs
│   │   │   │   ├── SegmentMergeQueue.cs
│   │   │   │   ├── SegmentMerger.cs
│   │   │   │   ├── SegmentReader.cs
│   │   │   │   ├── SegmentTermDocs.cs
│   │   │   │   ├── SegmentTermEnum.cs
│   │   │   │   ├── SegmentTermPositionVector.cs
│   │   │   │   ├── SegmentTermPositions.cs
│   │   │   │   ├── SegmentTermVector.cs
│   │   │   │   ├── SegmentWriteState.cs
│   │   │   │   ├── SerialMergeScheduler.cs
│   │   │   │   ├── SnapshotDeletionPolicy.cs
│   │   │   │   ├── SortedTermVectorMapper.cs
│   │   │   │   ├── StaleReaderException.cs
│   │   │   │   ├── StoredFieldsWriter.cs
│   │   │   │   ├── StoredFieldsWriterPerThread.cs
│   │   │   │   ├── Term.cs
│   │   │   │   ├── TermBuffer.cs
│   │   │   │   ├── TermDocs.cs
│   │   │   │   ├── TermEnum.cs
│   │   │   │   ├── TermFreqVector.cs
│   │   │   │   ├── TermInfo.cs
│   │   │   │   ├── TermInfosReader.cs
│   │   │   │   ├── TermInfosWriter.cs
│   │   │   │   ├── TermPositionVector.cs
│   │   │   │   ├── TermPositions.cs
│   │   │   │   ├── TermVectorEntry.cs
│   │   │   │   ├── TermVectorEntryFreqSortedComparator.cs
│   │   │   │   ├── TermVectorMapper.cs
│   │   │   │   ├── TermVectorOffsetInfo.cs
│   │   │   │   ├── TermVectorsReader.cs
│   │   │   │   ├── TermVectorsTermsWriter.cs
│   │   │   │   ├── TermVectorsTermsWriterPerField.cs
│   │   │   │   ├── TermVectorsTermsWriterPerThread.cs
│   │   │   │   ├── TermVectorsWriter.cs
│   │   │   │   ├── TermsHash.cs
│   │   │   │   ├── TermsHashConsumer.cs
│   │   │   │   ├── TermsHashConsumerPerField.cs
│   │   │   │   ├── TermsHashConsumerPerThread.cs
│   │   │   │   ├── TermsHashPerField.cs
│   │   │   │   └── TermsHashPerThread.cs
│   │   │   ├── Lucene.Net.Search.RemoteSearchable.config
│   │   │   ├── Lucene.Net.Search.TestSort.config
│   │   │   ├── Lucene.Net.csproj
│   │   │   ├── Lucene.Net.xml
│   │   │   ├── LucenePackage.cs
│   │   │   ├── Messages
│   │   │   │   ├── Message.cs
│   │   │   │   ├── MessageImpl.cs
│   │   │   │   ├── NLS.cs
│   │   │   │   ├── NLSException.cs
│   │   │   │   └── Package.html
│   │   │   ├── Overview.html
│   │   │   ├── Package.html
│   │   │   ├── QueryParser
│   │   │   │   ├── CharStream.cs
│   │   │   │   ├── FastCharStream.cs
│   │   │   │   ├── MultiFieldQueryParser.cs
│   │   │   │   ├── Package.html
│   │   │   │   ├── ParseException.cs
│   │   │   │   ├── QueryParser.cs
│   │   │   │   ├── QueryParser.jj
│   │   │   │   ├── QueryParserConstants.cs
│   │   │   │   ├── QueryParserTokenManager.cs
│   │   │   │   ├── Token.cs
│   │   │   │   └── TokenMgrError.cs
│   │   │   ├── Search
│   │   │   │   ├── BooleanClause.cs
│   │   │   │   ├── BooleanQuery.cs
│   │   │   │   ├── BooleanScorer.cs
│   │   │   │   ├── BooleanScorer2.cs
│   │   │   │   ├── CachingSpanFilter.cs
│   │   │   │   ├── CachingWrapperFilter.cs
│   │   │   │   ├── Collector.cs
│   │   │   │   ├── ComplexExplanation.cs
│   │   │   │   ├── ConjunctionScorer.cs
│   │   │   │   ├── ConstantScoreQuery.cs
│   │   │   │   ├── ConstantScoreRangeQuery.cs
│   │   │   │   ├── DefaultSimilarity.cs
│   │   │   │   ├── DisjunctionMaxQuery.cs
│   │   │   │   ├── DisjunctionMaxScorer.cs
│   │   │   │   ├── DisjunctionSumScorer.cs
│   │   │   │   ├── DocIdSet.cs
│   │   │   │   ├── DocIdSetIterator.cs
│   │   │   │   ├── ExactPhraseScorer.cs
│   │   │   │   ├── Explanation.cs
│   │   │   │   ├── ExtendedFieldCache.cs
│   │   │   │   ├── FieldCache.cs
│   │   │   │   ├── FieldCacheImpl.cs
│   │   │   │   ├── FieldCacheRangeFilter.cs
│   │   │   │   ├── FieldCacheTermsFilter.cs
│   │   │   │   ├── FieldComparator.cs
│   │   │   │   ├── FieldComparatorSource.cs
│   │   │   │   ├── FieldDoc.cs
│   │   │   │   ├── FieldDocSortedHitQueue.cs
│   │   │   │   ├── FieldSortedHitQueue.cs
│   │   │   │   ├── FieldValueHitQueue.cs
│   │   │   │   ├── Filter.cs
│   │   │   │   ├── FilterManager.cs
│   │   │   │   ├── FilteredDocIdSet.cs
│   │   │   │   ├── FilteredDocIdSetIterator.cs
│   │   │   │   ├── FilteredQuery.cs
│   │   │   │   ├── FilteredTermEnum.cs
│   │   │   │   ├── Function
│   │   │   │   │   ├── ByteFieldSource.cs
│   │   │   │   │   ├── CustomScoreProvider.cs
│   │   │   │   │   ├── CustomScoreQuery.cs
│   │   │   │   │   ├── DocValues.cs
│   │   │   │   │   ├── FieldCacheSource.cs
│   │   │   │   │   ├── FieldScoreQuery.cs
│   │   │   │   │   ├── FloatFieldSource.cs
│   │   │   │   │   ├── IntFieldSource.cs
│   │   │   │   │   ├── MultiValueSource.cs
│   │   │   │   │   ├── OrdFieldSource.cs
│   │   │   │   │   ├── Package.html
│   │   │   │   │   ├── ReverseOrdFieldSource.cs
│   │   │   │   │   ├── ShortFieldSource.cs
│   │   │   │   │   ├── ValueSource.cs
│   │   │   │   │   └── ValueSourceQuery.cs
│   │   │   │   ├── FuzzyQuery.cs
│   │   │   │   ├── FuzzyTermEnum.cs
│   │   │   │   ├── Hit.cs
│   │   │   │   ├── HitCollector.cs
│   │   │   │   ├── HitCollectorWrapper.cs
│   │   │   │   ├── HitIterator.cs
│   │   │   │   ├── HitQueue.cs
│   │   │   │   ├── Hits.cs
│   │   │   │   ├── IndexSearcher.cs
│   │   │   │   ├── MatchAllDocsQuery.cs
│   │   │   │   ├── MultiPhraseQuery.cs
│   │   │   │   ├── MultiSearcher.cs
│   │   │   │   ├── MultiTermQuery.cs
│   │   │   │   ├── MultiTermQueryWrapperFilter.cs
│   │   │   │   ├── NumericRangeFilter.cs
│   │   │   │   ├── NumericRangeQuery.cs
│   │   │   │   ├── Package.html
│   │   │   │   ├── ParallelMultiSearcher.cs
│   │   │   │   ├── Payloads
│   │   │   │   │   ├── AveragePayloadFunction.cs
│   │   │   │   │   ├── BoostingTermQuery.cs
│   │   │   │   │   ├── MaxPayloadFunction.cs
│   │   │   │   │   ├── MinPayloadFunction.cs
│   │   │   │   │   ├── Package.html
│   │   │   │   │   ├── PayloadFunction.cs
│   │   │   │   │   ├── PayloadNearQuery.cs
│   │   │   │   │   ├── PayloadSpanUtil.cs
│   │   │   │   │   └── PayloadTermQuery.cs
│   │   │   │   ├── PhrasePositions.cs
│   │   │   │   ├── PhraseQuery.cs
│   │   │   │   ├── PhraseQueue.cs
│   │   │   │   ├── PhraseScorer.cs
│   │   │   │   ├── PositiveScoresOnlyCollector.cs
│   │   │   │   ├── PrefixFilter.cs
│   │   │   │   ├── PrefixQuery.cs
│   │   │   │   ├── PrefixTermEnum.cs
│   │   │   │   ├── Query.cs
│   │   │   │   ├── QueryFilter.cs
│   │   │   │   ├── QueryTermVector.cs
│   │   │   │   ├── QueryWrapperFilter.cs
│   │   │   │   ├── RangeFilter.cs
│   │   │   │   ├── RangeQuery.cs
│   │   │   │   ├── ReqExclScorer.cs
│   │   │   │   ├── ReqOptSumScorer.cs
│   │   │   │   ├── ScoreCachingWrappingScorer.cs
│   │   │   │   ├── ScoreDoc.cs
│   │   │   │   ├── ScoreDocComparator.cs
│   │   │   │   ├── Scorer.cs
│   │   │   │   ├── Searchable.cs
│   │   │   │   ├── Searcher.cs
│   │   │   │   ├── Similarity.cs
│   │   │   │   ├── SimilarityDelegator.cs
│   │   │   │   ├── SloppyPhraseScorer.cs
│   │   │   │   ├── Sort.cs
│   │   │   │   ├── SortComparator.cs
│   │   │   │   ├── SortComparatorSource.cs
│   │   │   │   ├── SortField.cs
│   │   │   │   ├── SpanFilter.cs
│   │   │   │   ├── SpanFilterResult.cs
│   │   │   │   ├── SpanQueryFilter.cs
│   │   │   │   ├── Spans
│   │   │   │   │   ├── FieldMaskingSpanQuery.cs
│   │   │   │   │   ├── NearSpansOrdered.cs
│   │   │   │   │   ├── NearSpansUnordered.cs
│   │   │   │   │   ├── Package.html
│   │   │   │   │   ├── SpanFirstQuery.cs
│   │   │   │   │   ├── SpanNearQuery.cs
│   │   │   │   │   ├── SpanNotQuery.cs
│   │   │   │   │   ├── SpanOrQuery.cs
│   │   │   │   │   ├── SpanQuery.cs
│   │   │   │   │   ├── SpanScorer.cs
│   │   │   │   │   ├── SpanTermQuery.cs
│   │   │   │   │   ├── SpanWeight.cs
│   │   │   │   │   ├── Spans.cs
│   │   │   │   │   └── TermSpans.cs
│   │   │   │   ├── TermQuery.cs
│   │   │   │   ├── TermRangeFilter.cs
│   │   │   │   ├── TermRangeQuery.cs
│   │   │   │   ├── TermRangeTermEnum.cs
│   │   │   │   ├── TermScorer.cs
│   │   │   │   ├── TimeLimitedCollector.cs
│   │   │   │   ├── TimeLimitingCollector.cs
│   │   │   │   ├── TopDocCollector.cs
│   │   │   │   ├── TopDocs.cs
│   │   │   │   ├── TopDocsCollector.cs
│   │   │   │   ├── TopFieldCollector.cs
│   │   │   │   ├── TopFieldDocCollector.cs
│   │   │   │   ├── TopFieldDocs.cs
│   │   │   │   ├── TopScoreDocCollector.cs
│   │   │   │   ├── Weight.cs
│   │   │   │   ├── WildcardQuery.cs
│   │   │   │   └── WildcardTermEnum.cs
│   │   │   ├── Store
│   │   │   │   ├── AlreadyClosedException.cs
│   │   │   │   ├── BufferedIndexInput.cs
│   │   │   │   ├── BufferedIndexOutput.cs
│   │   │   │   ├── CheckSumIndexInput.cs
│   │   │   │   ├── CheckSumIndexOutput.cs
│   │   │   │   ├── Directory.cs
│   │   │   │   ├── FSDirectory.cs
│   │   │   │   ├── FSLockFactory.cs
│   │   │   │   ├── FileSwitchDirectory.cs
│   │   │   │   ├── IndexInput.cs
│   │   │   │   ├── IndexOutput.cs
│   │   │   │   ├── Lock.cs
│   │   │   │   ├── LockFactory.cs
│   │   │   │   ├── LockObtainFailedException.cs
│   │   │   │   ├── LockReleaseFailedException.cs
│   │   │   │   ├── LockStressTest.cs
│   │   │   │   ├── LockVerifyServer.cs
│   │   │   │   ├── MMapDirectory.cs
│   │   │   │   ├── NIOFSDirectory.cs
│   │   │   │   ├── NativeFSLockFactory.cs
│   │   │   │   ├── NoLockFactory.cs
│   │   │   │   ├── NoSuchDirectoryException.cs
│   │   │   │   ├── Package.html
│   │   │   │   ├── RAMDirectory.cs
│   │   │   │   ├── RAMFile.cs
│   │   │   │   ├── RAMInputStream.cs
│   │   │   │   ├── RAMOutputStream.cs
│   │   │   │   ├── SimpleFSDirectory.cs
│   │   │   │   ├── SimpleFSLockFactory.cs
│   │   │   │   ├── SingleInstanceLockFactory.cs
│   │   │   │   └── VerifyingLockFactory.cs
│   │   │   ├── SupportClass.cs
│   │   │   └── Util
│   │   │       ├── ArrayUtil.cs
│   │   │       ├── Attribute.cs
│   │   │       ├── AttributeImpl.cs
│   │   │       ├── AttributeSource.cs
│   │   │       ├── AverageGuessMemoryModel.cs
│   │   │       ├── BitUtil.cs
│   │   │       ├── BitVector.cs
│   │   │       ├── Cache
│   │   │       │   ├── Cache.cs
│   │   │       │   ├── SimpleLRUCache.cs
│   │   │       │   └── SimpleMapCache.cs
│   │   │       ├── CloseableThreadLocal.cs
│   │   │       ├── Constants.cs
│   │   │       ├── DocIdBitSet.cs
│   │   │       ├── FieldCacheSanityChecker.cs
│   │   │       ├── IndexableBinaryStringTools.cs
│   │   │       ├── MapOfSets.cs
│   │   │       ├── MemoryModel.cs
│   │   │       ├── NumericUtils.cs
│   │   │       ├── OpenBitSet.cs
│   │   │       ├── OpenBitSetDISI.cs
│   │   │       ├── OpenBitSetIterator.cs
│   │   │       ├── Package.html
│   │   │       ├── Parameter.cs
│   │   │       ├── PriorityQueue.cs
│   │   │       ├── RamUsageEstimator.cs
│   │   │       ├── ReaderUtil.cs
│   │   │       ├── ScorerDocQueue.cs
│   │   │       ├── SimpleStringInterner.cs
│   │   │       ├── SmallFloat.cs
│   │   │       ├── SortedVIntList.cs
│   │   │       ├── SorterTemplate.cs
│   │   │       ├── StringHelper.cs
│   │   │       ├── StringInterner.cs
│   │   │       ├── ToStringUtils.cs
│   │   │       ├── UnicodeUtil.cs
│   │   │       └── Version.cs
│   │   ├── InversIndex
│   │   │   ├── DICEntry.cs
│   │   │   ├── Dictionary - 复制.cs
│   │   │   ├── Dictionary.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── IndexEntry.cs
│   │   │   ├── IndexList.cs
│   │   │   ├── InversIndex.csproj
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Purer.cs
│   │   │   ├── Query.cs
│   │   │   ├── RankFile.cs
│   │   │   ├── RankFileEntry.cs
│   │   │   ├── RelationEntry.cs
│   │   │   ├── RelationList.cs
│   │   │   ├── TFEntry.cs
│   │   │   ├── TFList.cs
│   │   │   ├── Vector.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── InversIndex.exe
│   │   │   │       ├── InversIndex.pdb
│   │   │   │       ├── InversIndex.vshost.exe
│   │   │   │       └── InversIndex.vshost.exe.manifest
│   │   │   └── obj
│   │   │       └── Debug
│   │   │           ├── InversIndex.Form1.resources
│   │   │           ├── InversIndex.Properties.Resources.resources
│   │   │           ├── InversIndex.csproj.FileListAbsolute.txt
│   │   │           ├── InversIndex.csproj.GenerateResource.Cache
│   │   │           ├── InversIndex.exe
│   │   │           ├── InversIndex.pdb
│   │   │           ├── Refactor
│   │   │           ├── ResolveAssemblyReference.cache
│   │   │           └── TempPE
│   │   ├── InversIndex.sln
│   │   ├── InversIndex.suo
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │       ├── UpgradeReport.css
│   │       ├── UpgradeReport.xslt
│   │       ├── UpgradeReport_Minus.gif
│   │       └── UpgradeReport_Plus.gif
│   ├── InversIndex.exe
│   ├── 试验3 检索系统 实验报告.docx
│   └── 请阅读 安装于执行说明.txt
├── 倒排索引
│   ├── Index
│   ├── InversIndex
│   │   ├── Backup
│   │   │   ├── Analysis
│   │   │   │   ├── ASCIIFoldingFilter.cs
│   │   │   │   ├── Analyzer.cs
│   │   │   │   ├── BaseCharFilter.cs
│   │   │   │   ├── CachingTokenFilter.cs
│   │   │   │   ├── CharArraySet.cs
│   │   │   │   ├── CharFilter.cs
│   │   │   │   ├── CharReader.cs
│   │   │   │   ├── CharStream.cs
│   │   │   │   ├── CharTokenizer.cs
│   │   │   │   ├── CharacterCache.cs
│   │   │   │   ├── ISOLatin1AccentFilter.cs
│   │   │   │   ├── KeywordAnalyzer.cs
│   │   │   │   ├── KeywordTokenizer.cs
│   │   │   │   ├── LengthFilter.cs
│   │   │   │   ├── LetterTokenizer.cs
│   │   │   │   ├── LowerCaseFilter.cs
│   │   │   │   ├── LowerCaseTokenizer.cs
│   │   │   │   ├── MappingCharFilter.cs
│   │   │   │   ├── NormalizeCharMap.cs
│   │   │   │   ├── NumericTokenStream.cs
│   │   │   │   ├── Package.html
│   │   │   │   ├── PerFieldAnalyzerWrapper.cs
│   │   │   │   ├── PorterStemFilter.cs
│   │   │   │   ├── PorterStemmer.cs
│   │   │   │   ├── SimpleAnalyzer.cs
│   │   │   │   ├── SinkTokenizer.cs
│   │   │   │   ├── Standard
│   │   │   │   │   ├── Package.html
│   │   │   │   │   ├── StandardAnalyzer.cs
│   │   │   │   │   ├── StandardFilter.cs
│   │   │   │   │   ├── StandardTokenizer.cs
│   │   │   │   │   ├── StandardTokenizerImpl.cs
│   │   │   │   │   └── StandardTokenizerImpl.jflex
│   │   │   │   ├── StopAnalyzer.cs
│   │   │   │   ├── StopFilter.cs
│   │   │   │   ├── TeeSinkTokenFilter.cs
│   │   │   │   ├── TeeTokenFilter.cs
│   │   │   │   ├── Token.cs
│   │   │   │   ├── TokenFilter.cs
│   │   │   │   ├── TokenStream.cs
│   │   │   │   ├── TokenWrapper.cs
│   │   │   │   ├── Tokenattributes
│   │   │   │   │   ├── FlagsAttribute.cs
│   │   │   │   │   ├── FlagsAttributeImpl.cs
│   │   │   │   │   ├── OffsetAttribute.cs
│   │   │   │   │   ├── OffsetAttributeImpl.cs
│   │   │   │   │   ├── PayloadAttribute.cs
│   │   │   │   │   ├── PayloadAttributeImpl.cs
│   │   │   │   │   ├── PositionIncrementAttribute.cs
│   │   │   │   │   ├── PositionIncrementAttributeImpl.cs
│   │   │   │   │   ├── TermAttribute.cs
│   │   │   │   │   ├── TermAttributeImpl.cs
│   │   │   │   │   ├── TypeAttribute.cs
│   │   │   │   │   └── TypeAttributeImpl.cs
│   │   │   │   ├── Tokenizer.cs
│   │   │   │   ├── WhitespaceAnalyzer.cs
│   │   │   │   ├── WhitespaceTokenizer.cs
│   │   │   │   └── WordlistLoader.cs
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Document
│   │   │   │   ├── AbstractField.cs
│   │   │   │   ├── CompressionTools.cs
│   │   │   │   ├── DateField.cs
│   │   │   │   ├── DateTools.cs
│   │   │   │   ├── Document.cs
│   │   │   │   ├── Field.cs
│   │   │   │   ├── FieldSelector.cs
│   │   │   │   ├── FieldSelectorResult.cs
│   │   │   │   ├── Fieldable.cs
│   │   │   │   ├── LoadFirstFieldSelector.cs
│   │   │   │   ├── MapFieldSelector.cs
│   │   │   │   ├── NumberTools.cs
│   │   │   │   ├── NumericField.cs
│   │   │   │   ├── Package.html
│   │   │   │   └── SetBasedFieldSelector.cs
│   │   │   ├── Index
│   │   │   │   ├── AbstractAllTermDocs.cs
│   │   │   │   ├── AllTermDocs.cs
│   │   │   │   ├── BufferedDeletes.cs
│   │   │   │   ├── ByteBlockPool.cs
│   │   │   │   ├── ByteSliceReader.cs
│   │   │   │   ├── ByteSliceWriter.cs
│   │   │   │   ├── CharBlockPool.cs
│   │   │   │   ├── CheckIndex.cs
│   │   │   │   ├── CompoundFileReader.cs
│   │   │   │   ├── CompoundFileWriter.cs
│   │   │   │   ├── ConcurrentMergeScheduler.cs
│   │   │   │   ├── CorruptIndexException.cs
│   │   │   │   ├── DefaultSkipListReader.cs
│   │   │   │   ├── DefaultSkipListWriter.cs
│   │   │   │   ├── DirectoryOwningReader.cs
│   │   │   │   ├── DirectoryReader.cs
│   │   │   │   ├── DocConsumer.cs
│   │   │   │   ├── DocConsumerPerThread.cs
│   │   │   │   ├── DocFieldConsumer.cs
│   │   │   │   ├── DocFieldConsumerPerField.cs
│   │   │   │   ├── DocFieldConsumerPerThread.cs
│   │   │   │   ├── DocFieldConsumers.cs
│   │   │   │   ├── DocFieldConsumersPerField.cs
│   │   │   │   ├── DocFieldConsumersPerThread.cs
│   │   │   │   ├── DocFieldProcessor.cs
│   │   │   │   ├── DocFieldProcessorPerField.cs
│   │   │   │   ├── DocFieldProcessorPerThread.cs
│   │   │   │   ├── DocInverter.cs
│   │   │   │   ├── DocInverterPerField.cs
│   │   │   │   ├── DocInverterPerThread.cs
│   │   │   │   ├── DocumentsWriter.cs
│   │   │   │   ├── DocumentsWriterThreadState.cs
│   │   │   │   ├── FieldInfo.cs
│   │   │   │   ├── FieldInfos.cs
│   │   │   │   ├── FieldInvertState.cs
│   │   │   │   ├── FieldReaderException.cs
│   │   │   │   ├── FieldSortedTermVectorMapper.cs
│   │   │   │   ├── FieldsReader.cs
│   │   │   │   ├── FieldsWriter.cs
│   │   │   │   ├── FilterIndexReader.cs
│   │   │   │   ├── FormatPostingsDocsConsumer.cs
│   │   │   │   ├── FormatPostingsDocsWriter.cs
│   │   │   │   ├── FormatPostingsFieldsConsumer.cs
│   │   │   │   ├── FormatPostingsFieldsWriter.cs
│   │   │   │   ├── FormatPostingsPositionsConsumer.cs
│   │   │   │   ├── FormatPostingsPositionsWriter.cs
│   │   │   │   ├── FormatPostingsTermsConsumer.cs
│   │   │   │   ├── FormatPostingsTermsWriter.cs
│   │   │   │   ├── FreqProxFieldMergeState.cs
│   │   │   │   ├── FreqProxTermsWriter.cs
│   │   │   │   ├── FreqProxTermsWriterPerField.cs
│   │   │   │   ├── FreqProxTermsWriterPerThread.cs
│   │   │   │   ├── IndexCommit.cs
│   │   │   │   ├── IndexCommitPoint.cs
│   │   │   │   ├── IndexDeletionPolicy.cs
│   │   │   │   ├── IndexFileDeleter.cs
│   │   │   │   ├── IndexFileNameFilter.cs
│   │   │   │   ├── IndexFileNames.cs
│   │   │   │   ├── IndexModifier.cs
│   │   │   │   ├── IndexReader.cs
│   │   │   │   ├── IndexWriter.cs
│   │   │   │   ├── IntBlockPool.cs
│   │   │   │   ├── InvertedDocConsumer.cs
│   │   │   │   ├── InvertedDocConsumerPerField.cs
│   │   │   │   ├── InvertedDocConsumerPerThread.cs
│   │   │   │   ├── InvertedDocEndConsumer.cs
│   │   │   │   ├── InvertedDocEndConsumerPerField.cs
│   │   │   │   ├── InvertedDocEndConsumerPerThread.cs
│   │   │   │   ├── KeepOnlyLastCommitDeletionPolicy.cs
│   │   │   │   ├── LogByteSizeMergePolicy.cs
│   │   │   │   ├── LogDocMergePolicy.cs
│   │   │   │   ├── LogMergePolicy.cs
│   │   │   │   ├── MergeDocIDRemapper.cs
│   │   │   │   ├── MergePolicy.cs
│   │   │   │   ├── MergeScheduler.cs
│   │   │   │   ├── MultiLevelSkipListReader.cs
│   │   │   │   ├── MultiLevelSkipListWriter.cs
│   │   │   │   ├── MultiReader.cs
│   │   │   │   ├── MultipleTermPositions.cs
│   │   │   │   ├── NormsWriter.cs
│   │   │   │   ├── NormsWriterPerField.cs
│   │   │   │   ├── NormsWriterPerThread.cs
│   │   │   │   ├── Package.html
│   │   │   │   ├── ParallelReader.cs
│   │   │   │   ├── Payload.cs
│   │   │   │   ├── PositionBasedTermVectorMapper.cs
│   │   │   │   ├── RawPostingList.cs
│   │   │   │   ├── ReadOnlyDirectoryReader.cs
│   │   │   │   ├── ReadOnlySegmentReader.cs
│   │   │   │   ├── ReusableStringReader.cs
│   │   │   │   ├── SegmentInfo.cs
│   │   │   │   ├── SegmentInfos.cs
│   │   │   │   ├── SegmentMergeInfo.cs
│   │   │   │   ├── SegmentMergeQueue.cs
│   │   │   │   ├── SegmentMerger.cs
│   │   │   │   ├── SegmentReader.cs
│   │   │   │   ├── SegmentTermDocs.cs
│   │   │   │   ├── SegmentTermEnum.cs
│   │   │   │   ├── SegmentTermPositionVector.cs
│   │   │   │   ├── SegmentTermPositions.cs
│   │   │   │   ├── SegmentTermVector.cs
│   │   │   │   ├── SegmentWriteState.cs
│   │   │   │   ├── SerialMergeScheduler.cs
│   │   │   │   ├── SnapshotDeletionPolicy.cs
│   │   │   │   ├── SortedTermVectorMapper.cs
│   │   │   │   ├── StaleReaderException.cs
│   │   │   │   ├── StoredFieldsWriter.cs
│   │   │   │   ├── StoredFieldsWriterPerThread.cs
│   │   │   │   ├── Term.cs
│   │   │   │   ├── TermBuffer.cs
│   │   │   │   ├── TermDocs.cs
│   │   │   │   ├── TermEnum.cs
│   │   │   │   ├── TermFreqVector.cs
│   │   │   │   ├── TermInfo.cs
│   │   │   │   ├── TermInfosReader.cs
│   │   │   │   ├── TermInfosWriter.cs
│   │   │   │   ├── TermPositionVector.cs
│   │   │   │   ├── TermPositions.cs
│   │   │   │   ├── TermVectorEntry.cs
│   │   │   │   ├── TermVectorEntryFreqSortedComparator.cs
│   │   │   │   ├── TermVectorMapper.cs
│   │   │   │   ├── TermVectorOffsetInfo.cs
│   │   │   │   ├── TermVectorsReader.cs
│   │   │   │   ├── TermVectorsTermsWriter.cs
│   │   │   │   ├── TermVectorsTermsWriterPerField.cs
│   │   │   │   ├── TermVectorsTermsWriterPerThread.cs
│   │   │   │   ├── TermVectorsWriter.cs
│   │   │   │   ├── TermsHash.cs
│   │   │   │   ├── TermsHashConsumer.cs
│   │   │   │   ├── TermsHashConsumerPerField.cs
│   │   │   │   ├── TermsHashConsumerPerThread.cs
│   │   │   │   ├── TermsHashPerField.cs
│   │   │   │   └── TermsHashPerThread.cs
│   │   │   ├── Lucene.Net.Search.RemoteSearchable.config
│   │   │   ├── Lucene.Net.Search.TestSort.config
│   │   │   ├── Lucene.Net.csproj
│   │   │   ├── Lucene.Net.xml
│   │   │   ├── LucenePackage.cs
│   │   │   ├── Messages
│   │   │   │   ├── Message.cs
│   │   │   │   ├── MessageImpl.cs
│   │   │   │   ├── NLS.cs
│   │   │   │   ├── NLSException.cs
│   │   │   │   └── Package.html
│   │   │   ├── Overview.html
│   │   │   ├── Package.html
│   │   │   ├── QueryParser
│   │   │   │   ├── CharStream.cs
│   │   │   │   ├── FastCharStream.cs
│   │   │   │   ├── MultiFieldQueryParser.cs
│   │   │   │   ├── Package.html
│   │   │   │   ├── ParseException.cs
│   │   │   │   ├── QueryParser.cs
│   │   │   │   ├── QueryParser.jj
│   │   │   │   ├── QueryParserConstants.cs
│   │   │   │   ├── QueryParserTokenManager.cs
│   │   │   │   ├── Token.cs
│   │   │   │   └── TokenMgrError.cs
│   │   │   ├── Search
│   │   │   │   ├── BooleanClause.cs
│   │   │   │   ├── BooleanQuery.cs
│   │   │   │   ├── BooleanScorer.cs
│   │   │   │   ├── BooleanScorer2.cs
│   │   │   │   ├── CachingSpanFilter.cs
│   │   │   │   ├── CachingWrapperFilter.cs
│   │   │   │   ├── Collector.cs
│   │   │   │   ├── ComplexExplanation.cs
│   │   │   │   ├── ConjunctionScorer.cs
│   │   │   │   ├── ConstantScoreQuery.cs
│   │   │   │   ├── ConstantScoreRangeQuery.cs
│   │   │   │   ├── DefaultSimilarity.cs
│   │   │   │   ├── DisjunctionMaxQuery.cs
│   │   │   │   ├── DisjunctionMaxScorer.cs
│   │   │   │   ├── DisjunctionSumScorer.cs
│   │   │   │   ├── DocIdSet.cs
│   │   │   │   ├── DocIdSetIterator.cs
│   │   │   │   ├── ExactPhraseScorer.cs
│   │   │   │   ├── Explanation.cs
│   │   │   │   ├── ExtendedFieldCache.cs
│   │   │   │   ├── FieldCache.cs
│   │   │   │   ├── FieldCacheImpl.cs
│   │   │   │   ├── FieldCacheRangeFilter.cs
│   │   │   │   ├── FieldCacheTermsFilter.cs
│   │   │   │   ├── FieldComparator.cs
│   │   │   │   ├── FieldComparatorSource.cs
│   │   │   │   ├── FieldDoc.cs
│   │   │   │   ├── FieldDocSortedHitQueue.cs
│   │   │   │   ├── FieldSortedHitQueue.cs
│   │   │   │   ├── FieldValueHitQueue.cs
│   │   │   │   ├── Filter.cs
│   │   │   │   ├── FilterManager.cs
│   │   │   │   ├── FilteredDocIdSet.cs
│   │   │   │   ├── FilteredDocIdSetIterator.cs
│   │   │   │   ├── FilteredQuery.cs
│   │   │   │   ├── FilteredTermEnum.cs
│   │   │   │   ├── Function
│   │   │   │   │   ├── ByteFieldSource.cs
│   │   │   │   │   ├── CustomScoreProvider.cs
│   │   │   │   │   ├── CustomScoreQuery.cs
│   │   │   │   │   ├── DocValues.cs
│   │   │   │   │   ├── FieldCacheSource.cs
│   │   │   │   │   ├── FieldScoreQuery.cs
│   │   │   │   │   ├── FloatFieldSource.cs
│   │   │   │   │   ├── IntFieldSource.cs
│   │   │   │   │   ├── MultiValueSource.cs
│   │   │   │   │   ├── OrdFieldSource.cs
│   │   │   │   │   ├── Package.html
│   │   │   │   │   ├── ReverseOrdFieldSource.cs
│   │   │   │   │   ├── ShortFieldSource.cs
│   │   │   │   │   ├── ValueSource.cs
│   │   │   │   │   └── ValueSourceQuery.cs
│   │   │   │   ├── FuzzyQuery.cs
│   │   │   │   ├── FuzzyTermEnum.cs
│   │   │   │   ├── Hit.cs
│   │   │   │   ├── HitCollector.cs
│   │   │   │   ├── HitCollectorWrapper.cs
│   │   │   │   ├── HitIterator.cs
│   │   │   │   ├── HitQueue.cs
│   │   │   │   ├── Hits.cs
│   │   │   │   ├── IndexSearcher.cs
│   │   │   │   ├── MatchAllDocsQuery.cs
│   │   │   │   ├── MultiPhraseQuery.cs
│   │   │   │   ├── MultiSearcher.cs
│   │   │   │   ├── MultiTermQuery.cs
│   │   │   │   ├── MultiTermQueryWrapperFilter.cs
│   │   │   │   ├── NumericRangeFilter.cs
│   │   │   │   ├── NumericRangeQuery.cs
│   │   │   │   ├── Package.html
│   │   │   │   ├── ParallelMultiSearcher.cs
│   │   │   │   ├── Payloads
│   │   │   │   │   ├── AveragePayloadFunction.cs
│   │   │   │   │   ├── BoostingTermQuery.cs
│   │   │   │   │   ├── MaxPayloadFunction.cs
│   │   │   │   │   ├── MinPayloadFunction.cs
│   │   │   │   │   ├── Package.html
│   │   │   │   │   ├── PayloadFunction.cs
│   │   │   │   │   ├── PayloadNearQuery.cs
│   │   │   │   │   ├── PayloadSpanUtil.cs
│   │   │   │   │   └── PayloadTermQuery.cs
│   │   │   │   ├── PhrasePositions.cs
│   │   │   │   ├── PhraseQuery.cs
│   │   │   │   ├── PhraseQueue.cs
│   │   │   │   ├── PhraseScorer.cs
│   │   │   │   ├── PositiveScoresOnlyCollector.cs
│   │   │   │   ├── PrefixFilter.cs
│   │   │   │   ├── PrefixQuery.cs
│   │   │   │   ├── PrefixTermEnum.cs
│   │   │   │   ├── Query.cs
│   │   │   │   ├── QueryFilter.cs
│   │   │   │   ├── QueryTermVector.cs
│   │   │   │   ├── QueryWrapperFilter.cs
│   │   │   │   ├── RangeFilter.cs
│   │   │   │   ├── RangeQuery.cs
│   │   │   │   ├── ReqExclScorer.cs
│   │   │   │   ├── ReqOptSumScorer.cs
│   │   │   │   ├── ScoreCachingWrappingScorer.cs
│   │   │   │   ├── ScoreDoc.cs
│   │   │   │   ├── ScoreDocComparator.cs
│   │   │   │   ├── Scorer.cs
│   │   │   │   ├── Searchable.cs
│   │   │   │   ├── Searcher.cs
│   │   │   │   ├── Similarity.cs
│   │   │   │   ├── SimilarityDelegator.cs
│   │   │   │   ├── SloppyPhraseScorer.cs
│   │   │   │   ├── Sort.cs
│   │   │   │   ├── SortComparator.cs
│   │   │   │   ├── SortComparatorSource.cs
│   │   │   │   ├── SortField.cs
│   │   │   │   ├── SpanFilter.cs
│   │   │   │   ├── SpanFilterResult.cs
│   │   │   │   ├── SpanQueryFilter.cs
│   │   │   │   ├── Spans
│   │   │   │   │   ├── FieldMaskingSpanQuery.cs
│   │   │   │   │   ├── NearSpansOrdered.cs
│   │   │   │   │   ├── NearSpansUnordered.cs
│   │   │   │   │   ├── Package.html
│   │   │   │   │   ├── SpanFirstQuery.cs
│   │   │   │   │   ├── SpanNearQuery.cs
│   │   │   │   │   ├── SpanNotQuery.cs
│   │   │   │   │   ├── SpanOrQuery.cs
│   │   │   │   │   ├── SpanQuery.cs
│   │   │   │   │   ├── SpanScorer.cs
│   │   │   │   │   ├── SpanTermQuery.cs
│   │   │   │   │   ├── SpanWeight.cs
│   │   │   │   │   ├── Spans.cs
│   │   │   │   │   └── TermSpans.cs
│   │   │   │   ├── TermQuery.cs
│   │   │   │   ├── TermRangeFilter.cs
│   │   │   │   ├── TermRangeQuery.cs
│   │   │   │   ├── TermRangeTermEnum.cs
│   │   │   │   ├── TermScorer.cs
│   │   │   │   ├── TimeLimitedCollector.cs
│   │   │   │   ├── TimeLimitingCollector.cs
│   │   │   │   ├── TopDocCollector.cs
│   │   │   │   ├── TopDocs.cs
│   │   │   │   ├── TopDocsCollector.cs
│   │   │   │   ├── TopFieldCollector.cs
│   │   │   │   ├── TopFieldDocCollector.cs
│   │   │   │   ├── TopFieldDocs.cs
│   │   │   │   ├── TopScoreDocCollector.cs
│   │   │   │   ├── Weight.cs
│   │   │   │   ├── WildcardQuery.cs
│   │   │   │   └── WildcardTermEnum.cs
│   │   │   ├── Store
│   │   │   │   ├── AlreadyClosedException.cs
│   │   │   │   ├── BufferedIndexInput.cs
│   │   │   │   ├── BufferedIndexOutput.cs
│   │   │   │   ├── CheckSumIndexInput.cs
│   │   │   │   ├── CheckSumIndexOutput.cs
│   │   │   │   ├── Directory.cs
│   │   │   │   ├── FSDirectory.cs
│   │   │   │   ├── FSLockFactory.cs
│   │   │   │   ├── FileSwitchDirectory.cs
│   │   │   │   ├── IndexInput.cs
│   │   │   │   ├── IndexOutput.cs
│   │   │   │   ├── Lock.cs
│   │   │   │   ├── LockFactory.cs
│   │   │   │   ├── LockObtainFailedException.cs
│   │   │   │   ├── LockReleaseFailedException.cs
│   │   │   │   ├── LockStressTest.cs
│   │   │   │   ├── LockVerifyServer.cs
│   │   │   │   ├── MMapDirectory.cs
│   │   │   │   ├── NIOFSDirectory.cs
│   │   │   │   ├── NativeFSLockFactory.cs
│   │   │   │   ├── NoLockFactory.cs
│   │   │   │   ├── NoSuchDirectoryException.cs
│   │   │   │   ├── Package.html
│   │   │   │   ├── RAMDirectory.cs
│   │   │   │   ├── RAMFile.cs
│   │   │   │   ├── RAMInputStream.cs
│   │   │   │   ├── RAMOutputStream.cs
│   │   │   │   ├── SimpleFSDirectory.cs
│   │   │   │   ├── SimpleFSLockFactory.cs
│   │   │   │   ├── SingleInstanceLockFactory.cs
│   │   │   │   └── VerifyingLockFactory.cs
│   │   │   ├── SupportClass.cs
│   │   │   └── Util
│   │   │       ├── ArrayUtil.cs
│   │   │       ├── Attribute.cs
│   │   │       ├── AttributeImpl.cs
│   │   │       ├── AttributeSource.cs
│   │   │       ├── AverageGuessMemoryModel.cs
│   │   │       ├── BitUtil.cs
│   │   │       ├── BitVector.cs
│   │   │       ├── Cache
│   │   │       │   ├── Cache.cs
│   │   │       │   ├── SimpleLRUCache.cs
│   │   │       │   └── SimpleMapCache.cs
│   │   │       ├── CloseableThreadLocal.cs
│   │   │       ├── Constants.cs
│   │   │       ├── DocIdBitSet.cs
│   │   │       ├── FieldCacheSanityChecker.cs
│   │   │       ├── IndexableBinaryStringTools.cs
│   │   │       ├── MapOfSets.cs
│   │   │       ├── MemoryModel.cs
│   │   │       ├── NumericUtils.cs
│   │   │       ├── OpenBitSet.cs
│   │   │       ├── OpenBitSetDISI.cs
│   │   │       ├── OpenBitSetIterator.cs
│   │   │       ├── Package.html
│   │   │       ├── Parameter.cs
│   │   │       ├── PriorityQueue.cs
│   │   │       ├── RamUsageEstimator.cs
│   │   │       ├── ReaderUtil.cs
│   │   │       ├── ScorerDocQueue.cs
│   │   │       ├── SimpleStringInterner.cs
│   │   │       ├── SmallFloat.cs
│   │   │       ├── SortedVIntList.cs
│   │   │       ├── SorterTemplate.cs
│   │   │       ├── StringHelper.cs
│   │   │       ├── StringInterner.cs
│   │   │       ├── ToStringUtils.cs
│   │   │       ├── UnicodeUtil.cs
│   │   │       └── Version.cs
│   │   ├── InversIndex
│   │   │   ├── DICEntry.cs
│   │   │   ├── Dictionary - 复制.cs
│   │   │   ├── Dictionary.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── IndexEntry.cs
│   │   │   ├── IndexList.cs
│   │   │   ├── InversIndex.csproj
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Purer.cs
│   │   │   ├── Query.cs
│   │   │   ├── RankFile.cs
│   │   │   ├── RankFileEntry.cs
│   │   │   ├── RelationEntry.cs
│   │   │   ├── RelationList.cs
│   │   │   ├── TFEntry.cs
│   │   │   ├── TFList.cs
│   │   │   ├── Vector.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── IndexDirectory
│   │   │   │       │   ├── _6.cfs
│   │   │   │       │   ├── segments.gen
│   │   │   │       │   └── segments_e
│   │   │   │       ├── InversIndex.exe
│   │   │   │       ├── InversIndex.pdb
│   │   │   │       ├── InversIndex.vshost.exe
│   │   │   │       ├── InversIndex.vshost.exe.manifest
│   │   │   │       ├── MyDictionary
│   │   │   │       ├── Mydictionary2
│   │   │   │       ├── asd
│   │   │   │       ├── test
│   │   │   │       ├── test1
│   │   │   │       ├── test2
│   │   │   │       ├── test3
│   │   │   │       ├── test3 - 复制
│   │   │   │       ├── test4
│   │   │   │       └── test5
│   │   │   └── obj
│   │   │       └── Debug
│   │   │           ├── InversIndex.Form1.resources
│   │   │           ├── InversIndex.Properties.Resources.resources
│   │   │           ├── InversIndex.csproj.FileListAbsolute.txt
│   │   │           ├── InversIndex.csproj.GenerateResource.Cache
│   │   │           ├── InversIndex.exe
│   │   │           ├── InversIndex.pdb
│   │   │           ├── Refactor
│   │   │           ├── ResolveAssemblyReference.cache
│   │   │           └── TempPE
│   │   ├── InversIndex.sln
│   │   ├── InversIndex.suo
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │       ├── UpgradeReport.css
│   │       ├── UpgradeReport.xslt
│   │       ├── UpgradeReport_Minus.gif
│   │       └── UpgradeReport_Plus.gif
│   ├── InversIndex.exe
│   ├── MyDictionary
│   ├── TFList
│   ├── 试验2 倒排索引 实验报告.docx
│   └── 请阅读 安装于执行说明.txt
└── 网络爬虫信息检索 C# 倒排索引_信息检索试验正确版.rar

63 directories, 1025 files