hello-algo/mkdocs.yml
2022-11-21 04:09:37 +08:00

155 lines
4.5 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Project information
site_name: Hello 算法
site_url: https://krahets.github.io/hello-algo/
site_author: Krahets
site_description: Your first book to learn Data Structure And Algorithm.
# Repository
repo_name: krahets/hello-algo
repo_url: https://github.com/krahets/hello-algo
# Copyright
copyright: Copyright © 2020 - 2022 Krahets
# Configuration
theme:
name: material
custom_dir: overrides
features:
- announce.dismiss
- content.code.annotate
- content.tabs.link
- content.tooltips
# - header.autohide
# - navigation.expand
- navigation.indexes
# - navigation.instant
# - navigation.prune
# - navigation.sections
# - navigation.tabs
# - navigation.tabs.sticky
# - navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
# - toc.integrate
palette:
- scheme: default
primary: white
# accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- scheme: slate
# primary: grey
# accent: indigo
toggle:
icon: material/weather-night
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
favicon: assets/images/favicon.png
logo: assets/images/logo.png
# icon:
# logo: logo
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/krahets
- icon: fontawesome/brands/twitter
link: https://twitter.com/krahets
generator: false
# Plugins
plugins:
- search
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
# - pymdownx.emoji:
# emoji_generator: !!python/name:materialx.emoji.to_svg
# emoji_index: !!python/name:materialx.emoji.twemoji
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.keys
# - pymdownx.magiclink:
# repo_url_shorthand: true
# user: squidfunk
# repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- stylesheets/extra.css
# Page tree
nav:
- 前言:
- chapter_introduction/index.md
- 如何使用本书:
- 算法学习建议: chapter_prerequisites/suggestions.md
- 编程环境安装: chapter_prerequisites/installation.md
- 一起参与创作: chapter_prerequisites/contribution.md
- 算法是什么:
- chapter_dsa_introduction/index.md
- 计算复杂度:
- 算法效率评估: chapter_computational_complexity/performance_evaluation.md
- 时间复杂度: chapter_computational_complexity/time_complexity.md
- 空间复杂度: chapter_computational_complexity/space_complexity.md
- 权衡时间与空间: chapter_computational_complexity/space_time_tradeoff.md
- 小结: chapter_computational_complexity/summary.md
- 数据结构简介:
- 数据与内存: chapter_data_structure/data_and_memory.md
- 数据结构分类: chapter_data_structure/classification_of_data_strcuture.md
- 小结: chapter_data_structure/summary.md
- 数组与链表:
- 数组Array: chapter_array_and_linkedlist/array.md
- 链表LinkedList: chapter_array_and_linkedlist/linked_list.md
- 列表List: chapter_array_and_linkedlist/list.md
- 小结: chapter_array_and_linkedlist/summary.md
- 栈与队列:
- Stack: chapter_stack_and_queue/stack.md
- 队列Queue: chapter_stack_and_queue/queue.md
- 双向队列Deque: chapter_stack_and_queue/deque.md
- 小结: chapter_stack_and_queue/summary.md
- 二叉树:
- 二叉树Binary Tree: chapter_tree/binary_tree.md
- 二叉树常见类型: chapter_tree/binary_tree_types.md
- 二叉搜索树: chapter_tree/binary_search_tree.md
- 小结: chapter_tree/summary.md
- 查找算法:
- 线性查找: chapter_searching/linear_search.md
- 二分查找: chapter_searching/binary_search.md
- 哈希查找: chapter_searching/hashing_search.md
- 小结: chapter_searching/summary.md
- 参考文献:
- chapter_reference/index.md