Python论坛  - 讨论区

标题:[python-chinese] 哪儿可以看到一些常见的算法么,python实现的

2006年01月26日 星期四 22:43

Elrania elrania at gmail.com
Thu Jan 26 22:43:30 HKT 2006

以前有见到一些c、c++,java的常见算法大全,不知道有没有类似python的。
那位有了解么。
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060126/39b365ec/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年01月27日 星期五 09:58

齐辰雄 qcxhome at sohu.com
Fri Jan 27 09:58:30 HKT 2006

以我的看法,找一本经典的算法教科书即可,语言并不重要。现在的算法书大多使用C语言,其实这里面的C语言并不复杂。关键是学习算法的思想。
  ----- Original Message ----- 
  From: Elrania 
  To: python-chinese at lists.python.cn 
  Sent: Thursday, January 26, 2006 10:43 PM
  Subject: [python-chinese] 哪儿可以看到一些常见的算法么,python实现的


  以前有见到一些c、c++,java的常见算法大全,不知道有没有类似python的。
  那位有了解么。 


------------------------------------------------------------------------------


  _______________________________________________
  python-chinese
  Post: send python-chinese at lists.python.cn
  Subscribe: send subscribe to python-chinese-request at lists.python.cn
  Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
  Detail Info: http://python.cn/mailman/listinfo/python-chinese
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060127/2556fb0b/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年01月27日 星期五 12:07

刘鑫 march.liu at gmail.com
Fri Jan 27 12:07:55 HKT 2006

基础的算法用任何语言描述都不重要,TAOCP使用了一个不存在于任何真实CPU的汇编――MIX,丝毫不影响它的经典地位。当然,当你深入某一个技术领域时,就要了解你所使用的语言,它的优缺点,特有的思维方式,等等,在这个角度,C和C++,Java和C#,Python和Ruby,都有很大不同,例如C++的Template、Lisp的函数式设计、Python的for迭代,都会影响到具体程序的实现方式。它们对各算法的实现方式和能力强弱,也就是你需要了解的。在这方面,不要说Python,就是C或者Java,也很少有相关的资料,何况完整的书籍。这个时候,你需要的是Google和熟练的英语。

以前有见到一些c、c++,java的常见算法大全,不知道有没有类似python的。
> 那位有了解么。
>
> ------------------------------
>
>
>
>


--
欢迎访问:
http://blog.csdn.net/ccat

刘鑫
March.Liu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060127/8c4fa55f/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年01月27日 星期五 12:51

Elrania elrania at gmail.com
Fri Jan 27 12:51:04 HKT 2006

多谢两位指点迷津,我...就是想抄点代码,是不是思想觉悟比较低...哎

在06-1-26,刘鑫 <march.liu at gmail.com> 写道:
>
> 基础的算法用任何语言描述都不重要,TAOCP使用了一个不存在于任何真实CPU的汇编――MIX,丝毫不影响它的经典地位。当然,当你深入某一个技术领域时,就要了解你所使用的语言,它的优缺点,特有的思维方式,等等,在这个角度,C和C++,Java和C#,Python和Ruby,都有很大不同,例如C++的Template、Lisp的函数式设计、Python的for迭代,都会影响到具体程序的实现方式。它们对各算法的实现方式和能力强弱,也就是你需要了解的。在这方面,不要说Python,就是C或者Java,也很少有相关的资料,何况完整的书籍。这个时候,你需要的是Google和熟练的英语。
>
>
>   以前有见到一些c、c++,java的常见算法大全,不知道有没有类似python的。
> > 那位有了解么。
> >
> > ------------------------------
> >
> >
> >
> >
>
>
> --
> 欢迎访问:
> http://blog.csdn.net/ccat
>
> 刘鑫
> March.Liu
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060126/541bf1d6/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年01月27日 星期五 22:48

刘鑫 march.liu at gmail.com
Fri Jan 27 22:48:38 HKT 2006

如果你有兴趣,不妨找一本其它语言的算法教材,试着把上面的算法例程改写成Python的,类似的事情我做过,感觉对初学阶段的帮助很大。

在06-1-27,Elrania <elrania at gmail.com> 写道:
>
> 多谢两位指点迷津,我...就是想抄点代码,是不是思想觉悟比较低...哎
>
> 在06-1-26,刘鑫 <march.liu at gmail.com> 写道:
> >
> > 基础的算法用任何语言描述都不重要,TAOCP使用了一个不存在于任何真实CPU的汇编――MIX,丝毫不影响它的经典地位。当然,当你深入某一个技术领域时,就要了解你所使用的语言,它的优缺点,特有的思维方式,等等,在这个角度,C和C++,Java和C#,Python和Ruby,都有很大不同,例如C++的Template、Lisp的函数式设计、Python的for迭代,都会影响到具体程序的实现方式。它们对各算法的实现方式和能力强弱,也就是你需要了解的。在这方面,不要说Python,就是C或者Java,也很少有相关的资料,何况完整的书籍。这个时候,你需要的是Google和熟练的英语。
> >
> >
> >   以前有见到一些c、c++,java的常见算法大全,不知道有没有类似python的。
> > > 那位有了解么。
> > >
> > > ------------------------------
> > >
> > >
> > >
> > >
> >
> >
> > --
> > 欢迎访问:
> > http://blog.csdn.net/ccat
> >
> > 刘鑫
> > March.Liu
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


--
欢迎访问:
http://blog.csdn.net/ccat

刘鑫
March.Liu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060127/175c6418/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年01月27日 星期五 22:54

3751 lwm3751 at gmail.com
Fri Jan 27 22:54:02 HKT 2006

啊,这种事我正在做。我正在把部分wxWidgets的例子用Python写出来。感觉比只看c++的例子,效果要好多了。

在 06-1-27,刘鑫<march.liu at gmail.com> 写道:
> 如果你有兴趣,不妨找一本其它语言的算法教材,试着把上面的算法例程改写成Python的,类似的事情我做过,感觉对初学阶段的帮助很大。
>
> 在06-1-27,Elrania <elrania at gmail.com> 写道:
> > 多谢两位指点迷津,我...就是想抄点代码,是不是思想觉悟比较低...哎
> >
> >
> > 在06-1-26,刘鑫 <march.liu at gmail.com> 写道:
> > >
> > >
> 基础的算法用任何语言描述都不重要,TAOCP使用了一个不存在于任何真实CPU的汇编――MIX,丝毫不影响它的经典地位。当然,当你深入某一个技术领域时,就要了解你所使用的语言,它的优缺点,特有的思维方式,等等,在这个角度,C和C++,Java和C#,Python和Ruby,都有很大不同,例如C++的Template、Lisp的函数式设计、Python的for迭代,都会影响到具体程序的实现方式。它们对各算法的实现方式和能力强弱,也就是你需要了解的。在这方面,不要说Python,就是C或者Java,也很少有相关的资料,何况完整的书籍。这个时候,你需要的是Google和熟练的英语。
> > >
> > >
> > >
> > >
> > > >
> > > >
> > > > 以前有见到一些c、c++,java的常见算法大全,不知道有没有类似python的。
> > > > 那位有了解么。
> > > >
> > > > ________________________________
>
> > > >
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > > --
> > > 欢迎访问:
> > > http://blog.csdn.net/ccat
> > >
> > > 刘鑫
> > > March.Liu
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese at lists.python.cn
> > > Subscribe: send subscribe to
> python-chinese-request at lists.python.cn
> > > Unsubscribe: send unsubscribe to
> python-chinese-request at lists.python.cn
> > > Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to
> python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to
> python-chinese-request at lists.python.cn
> > Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
> >
> >
>
>
>
> --
> 欢迎访问:
> http://blog.csdn.net/ccat
>
> 刘鑫
> March.Liu
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to
> python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to
> python-chinese-request at lists.python.cn
> Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
>
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年01月28日 星期六 10:07

Elrania elrania at gmail.com
Sat Jan 28 10:07:46 HKT 2006

en,这样不错啊,准备找本c的试试看,我只需要很少几个算法了。

在06-1-27,3751 <lwm3751 at gmail.com> 写道:
>
> 啊,这种事我正在做。我正在把部分wxWidgets的例子用Python写出来。感觉比只看c++的例子,效果要好多了。
>
> 在 06-1-27,刘鑫<march.liu at gmail.com> 写道:
> > 如果你有兴趣,不妨找一本其它语言的算法教材,试着把上面的算法例程改写成Python的,类似的事情我做过,感觉对初学阶段的帮助很大。
> >
> > 在06-1-27,Elrania <elrania at gmail.com> 写道:
> > > 多谢两位指点迷津,我...就是想抄点代码,是不是思想觉悟比较低...哎
> > >
> > >
> > > 在06-1-26,刘鑫 <march.liu at gmail.com> 写道:
> > > >
> > > >
> >
> 基础的算法用任何语言描述都不重要,TAOCP使用了一个不存在于任何真实CPU的汇编――MIX,丝毫不影响它的经典地位。当然,当你深入某一个技术领域时,就要了解你所使用的语言,它的优缺点,特有的思维方式,等等,在这个角度,C和C++,Java和C#,Python和Ruby,都有很大不同,例如C++的Template、Lisp的函数式设计、Python的for迭代,都会影响到具体程序的实现方式。它们对各算法的实现方式和能力强弱,也就是你需要了解的。在这方面,不要说Python,就是C或者Java,也很少有相关的资料,何况完整的书籍。这个时候,你需要的是Google和熟练的英语。
> > > >
> > > >
> > > >
> > > >
> > > > >
> > > > >
> > > > > 以前有见到一些c、c++,java的常见算法大全,不知道有没有类似python的。
> > > > > 那位有了解么。
> > > > >
> > > > > ________________________________
> >
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > > > --
> > > > 欢迎访问:
> > > > http://blog.csdn.net/ccat
> > > >
> > > > 刘鑫
> > > > March.Liu
> > > >
> > > > _______________________________________________
> > > > python-chinese
> > > > Post: send python-chinese at lists.python.cn
> > > > Subscribe: send subscribe to
> > python-chinese-request at lists.python.cn
> > > > Unsubscribe: send unsubscribe to
> > python-chinese-request at lists.python.cn
> > > > Detail Info:
> > http://python.cn/mailman/listinfo/python-chinese
> > > >
> > > >
> > >
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese at lists.python.cn
> > > Subscribe: send subscribe to
> > python-chinese-request at lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > python-chinese-request at lists.python.cn
> > > Detail Info:
> > http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> >
> >
> >
> > --
> > 欢迎访问:
> > http://blog.csdn.net/ccat
> >
> > 刘鑫
> > March.Liu
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to
> > python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request at lists.python.cn
> > Detail Info:
> > http://python.cn/mailman/listinfo/python-chinese
> >
> >
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060127/d2e4fdd3/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号