mirror of
https://github.com/heqin-zhu/algorithm.git
synced 2024-03-22 13:30:46 +08:00
37 lines
1.6 KiB
Python
37 lines
1.6 KiB
Python
README = r'''
|
|
# Algorithm and data structures
|
|
|
|
[![Stars](https://img.shields.io/github/stars/mbinary/algorithm-in-python.svg?label=Stars&style=social)](https://github.com/mbinary/algorithm-in-python/stargazers)
|
|
[![Forks](https://img.shields.io/github/forks/mbinary/algorithm-in-python.svg?label=Fork&style=social)](https://github.com/mbinary/algorithm-in-python/network/members)
|
|
[![repo-size](https://img.shields.io/github/repo-size/mbinary/algorithm-in-python.svg)]()
|
|
[![License](https://img.shields.io/badge/LICENSE-WTFPL-blue.svg)](LICENSE)
|
|
[![Language](https://img.shields.io/badge/language-python3-orange.svg)]()
|
|
[![codebeat badge](https://codebeat.co/badges/4ef725b5-405a-4390-a860-a86deefab3f8)](https://codebeat.co/projects/github-com-mbinary-algorithm-in-python-master)
|
|
<!-- [![Build](https://travis-ci.org/mbinary/PL0-compiler.svg?branch=master)]() -->
|
|
|
|
>Notes and codes for learning algorithm and data structures :smiley:
|
|
|
|
Some pictures and ideas are from `<<Introduction to Algotithm>>`
|
|
|
|
I use python 3.6+ and c/c++ to implement them.
|
|
|
|
# Notice
|
|
Currently, Github can't render latex math formulas.Thus,if you want to view the markodwn notes which contain latex math formulas, you can visit [my blog](https://mbinary.xyz)
|
|
|
|
# Index
|
|
{index}
|
|
'''
|
|
|
|
HEAD = '''{begin} mbinary
|
|
#########################################################################
|
|
# File : {name}
|
|
# Author: mbinary
|
|
# Mail: zhuheqin1@gmail.com
|
|
# Blog: https://mbinary.xyz
|
|
# Github: https://github.com/mbinary
|
|
# Created Time: {ctime}
|
|
# Description:
|
|
#########################################################################
|
|
{end}
|
|
'''
|