Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit b4af256

Browse files
committed
添加README
1 parent 26c3b67 commit b4af256

File tree

2 files changed

+220
-0
lines changed

2 files changed

+220
-0
lines changed

‎.gitignore‎

Lines changed: 202 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,202 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### JetBrains template
3+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
4+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
5+
6+
# User-specific stuff:
7+
.idea/workspace.xml
8+
.idea/tasks.xml
9+
.idea/dictionaries
10+
.idea/vcs.xml
11+
.idea/jsLibraryMappings.xml
12+
13+
# Sensitive or high-churn files:
14+
.idea/dataSources.ids
15+
.idea/dataSources.xml
16+
.idea/dataSources.local.xml
17+
.idea/sqlDataSources.xml
18+
.idea/dynamic.xml
19+
.idea/uiDesigner.xml
20+
21+
# Gradle:
22+
.idea/gradle.xml
23+
.idea/libraries
24+
25+
# Mongo Explorer plugin:
26+
.idea/mongoSettings.xml
27+
28+
## File-based project format:
29+
*.iws
30+
31+
## Plugin-specific files:
32+
33+
# IntelliJ
34+
/out/
35+
36+
# mpeltonen/sbt-idea plugin
37+
.idea_modules/
38+
39+
# JIRA plugin
40+
atlassian-ide-plugin.xml
41+
42+
# Crashlytics plugin (for Android Studio and IntelliJ)
43+
com_crashlytics_export_strings.xml
44+
crashlytics.properties
45+
crashlytics-build.properties
46+
fabric.properties
47+
### VirtualEnv template
48+
# Virtualenv
49+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
50+
.Python
51+
[Bb]in
52+
[Ii]nclude
53+
[Ll]ib
54+
[Ll]ib64
55+
[Ll]ocal
56+
[Ss]cripts
57+
pyvenv.cfg
58+
.venv
59+
pip-selfcheck.json
60+
### Eclipse template
61+
62+
.metadata
63+
bin/
64+
tmp/
65+
*.tmp
66+
*.bak
67+
*.swp
68+
*~.nib
69+
local.properties
70+
.settings/
71+
.loadpath
72+
.recommenders
73+
74+
# Eclipse Core
75+
.project
76+
77+
# External tool builders
78+
.externalToolBuilders/
79+
80+
# Locally stored "Eclipse launch configurations"
81+
*.launch
82+
83+
# PyDev specific (Python IDE for Eclipse)
84+
*.pydevproject
85+
86+
# CDT-specific (C/C++ Development Tooling)
87+
.cproject
88+
89+
# JDT-specific (Eclipse Java Development Tools)
90+
.classpath
91+
92+
# Java annotation processor (APT)
93+
.factorypath
94+
95+
# PDT-specific (PHP Development Tools)
96+
.buildpath
97+
98+
# sbteclipse plugin
99+
.target
100+
101+
# Tern plugin
102+
.tern-project
103+
104+
# TeXlipse plugin
105+
.texlipse
106+
107+
# STS (Spring Tool Suite)
108+
.springBeans
109+
110+
# Code Recommenders
111+
.recommenders/
112+
### Python template
113+
# Byte-compiled / optimized / DLL files
114+
__pycache__/
115+
*.py[cod]
116+
*$py.class
117+
118+
# C extensions
119+
*.so
120+
121+
# Distribution / packaging
122+
.Python
123+
env/
124+
build/
125+
develop-eggs/
126+
dist/
127+
downloads/
128+
eggs/
129+
.eggs/
130+
lib/
131+
lib64/
132+
parts/
133+
sdist/
134+
var/
135+
*.egg-info/
136+
.installed.cfg
137+
*.egg
138+
139+
# PyInstaller
140+
# Usually these files are written by a python script from a template
141+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
142+
*.manifest
143+
*.spec
144+
145+
# Installer logs
146+
pip-log.txt
147+
pip-delete-this-directory.txt
148+
149+
# Unit test / coverage reports
150+
htmlcov/
151+
.tox/
152+
.coverage
153+
.coverage.*
154+
.cache
155+
nosetests.xml
156+
coverage.xml
157+
*,cover
158+
.hypothesis/
159+
160+
# Translations
161+
*.mo
162+
*.pot
163+
164+
# Django stuff:
165+
*.log
166+
local_settings.py
167+
168+
# Flask stuff:
169+
instance/
170+
.webassets-cache
171+
172+
# Scrapy stuff:
173+
.scrapy
174+
175+
# Sphinx documentation
176+
docs/_build/
177+
178+
# PyBuilder
179+
target/
180+
181+
# IPython Notebook
182+
.ipynb_checkpoints
183+
184+
# pyenv
185+
.python-version
186+
187+
# celery beat schedule file
188+
celerybeat-schedule
189+
190+
# dotenv
191+
.env
192+
193+
# virtualenv
194+
venv/
195+
ENV/
196+
197+
# Spyder project settings
198+
.spyderproject
199+
200+
# Rope project settings
201+
.ropeproject
202+

‎README.md‎

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Python Algorithm
2+
用Python实现各种算法
3+
## 排序算法
4+
5+
-[x] 冒泡排序
6+
-[x] 插入排序
7+
-[x] 选择排序
8+
-[x] 归并排序
9+
-[x] 堆排序
10+
-[x] 希尔排序
11+
-[x] 快速排序
12+
-[x] 计数排序
13+
14+
## 查找算法
15+
16+
- 顺序查找
17+
- 二分查找
18+
- Hash查找

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /