├── .gitignore ├── Fonts └── 字语青梅硬笔.ttf ├── LICENSE ├── MergeTwoSortListUseMultiCore ├── README.md ├── merge.png ├── mergeTwoList.cpp ├── perf.png └── prepareData.cpp ├── Paper ├── An Overview of Query Optimization in Relational Systems.pdf └── README.md ├── README.md ├── hash └── uthash │ └── uthash.h └── pdf ├── 多核编程入门.pdf ├── 开源分布式存储架构概览.pdf └── 阿里搜索服务系统架构.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/.gitignore -------------------------------------------------------------------------------- /Fonts/字语青梅硬笔.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/Fonts/字语青梅硬笔.ttf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/LICENSE -------------------------------------------------------------------------------- /MergeTwoSortListUseMultiCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/MergeTwoSortListUseMultiCore/README.md -------------------------------------------------------------------------------- /MergeTwoSortListUseMultiCore/merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/MergeTwoSortListUseMultiCore/merge.png -------------------------------------------------------------------------------- /MergeTwoSortListUseMultiCore/mergeTwoList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/MergeTwoSortListUseMultiCore/mergeTwoList.cpp -------------------------------------------------------------------------------- /MergeTwoSortListUseMultiCore/perf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/MergeTwoSortListUseMultiCore/perf.png -------------------------------------------------------------------------------- /MergeTwoSortListUseMultiCore/prepareData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/MergeTwoSortListUseMultiCore/prepareData.cpp -------------------------------------------------------------------------------- /Paper/An Overview of Query Optimization in Relational Systems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/Paper/An Overview of Query Optimization in Relational Systems.pdf -------------------------------------------------------------------------------- /Paper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/Paper/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # snippet 2 | 一些自己编写以及收集的不错的代码,主要是为了方便自己查找和知识整理 3 | -------------------------------------------------------------------------------- /hash/uthash/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/hash/uthash/uthash.h -------------------------------------------------------------------------------- /pdf/多核编程入门.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/pdf/多核编程入门.pdf -------------------------------------------------------------------------------- /pdf/开源分布式存储架构概览.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/pdf/开源分布式存储架构概览.pdf -------------------------------------------------------------------------------- /pdf/阿里搜索服务系统架构.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armsword/snippet/HEAD/pdf/阿里搜索服务系统架构.pdf --------------------------------------------------------------------------------