login


共有1页, 当前是第1页, 文章总数:2.

Quick Sort in python

Tuesday, May. 19. 2009 –  Category: Pythonic  –  0 Comments
Tags: python  sort  algorithm 

Quick Sort in pythonhttps://docs.google.com/Doc?docid=dftf9bqn_33c2jqjxg7&hl=en Just wondering how python works with arrays. Here is quick sort algorithm written in Python. Only one line of code: def qsort(L): if L == []: return [] return qsort([x for x in L[1:] if x=L[0]])def qsort(L): if len(L) 1: r [...]

The Zen of Python

Tuesday, Dec.. 9. 2008 –  Category: Pythonic  –  0 Comments
Tags:

import thisBeautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better than nested. Sparse is better than dense. Readability counts. Special cases aren't special enough to break the rules. Although practicality beats purity. Errors s [...]


Logo

About Me

  • A Computer Geek in Beijing, China. Focus on Web2.0 Technology: Google App Engine, Python, Django, Software Architecture, Agile, JAVA, J2EE, JavaScript, etc.

    Coding for fun, Coding with passion :-) It's my life!

Most Popular Posts

Tags