snowflying / core-algorithm

算法集锦的python实现

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

算法杂货铺 - python3实现

算法参考书籍列表,建议按照顺序阅读:

  • 《算法》第4版
  • 《算法导论》第3版
  • 《LeeCode算法题库》

作者的话

书中经典的算法示例使用python3语言实现,并且配有详细的算法原理说明。 整个部分分为两个部分,第一个部分是基于《算法导论》第3版这两本书中的所有例子写的。作为基础算法部分。 第二部分是LeeCode算法题库,选取其中最具代表性的100个算法题来演示。

从2013年就开始写这个系列,写到动态规划后就停了,期间工作太忙根本抽不出时间来写。 今年2020年决定继续把之前的捡起来,重新更新这个系列,做事情得有始有终,希望能把这个系列坚持写完。 希望对算法感兴趣的能在杂货铺里挑到自己想要的。

有任何问题都可以联系我:

欢迎关注我的个人公众号“飞污熊”,我会定期分享一些自己的Python学习笔记和心得。

公众号

How to Contribute

You are welcome to contribute to the project as follow

  • add/edit wiki
  • report/fix issue
  • code review
  • commit new feature
  • add testcase

Meanwhile you'd better follow the rules below

  • It's NOT recommended to submit a pull request directly to master branch. develop branch is more appropriate
  • Follow common Python coding conventions
  • Add the following license in each source file

License

(The Apache License)

Copyright (c) 2013-2020 Xiong Neng and other contributors

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

算法集锦的python实现


Languages

Language:Python 100.0%