Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Re: Algorithms using Python?

Reply
Thread Tools

Re: Algorithms using Python?

 
 
Dennis Lee Bieber
Guest
Posts: n/a
 
      09-21-2012
On Fri, 21 Sep 2012 14:26:04 +0530, Mayuresh Kathe <>
declaimed the following in gmane.comp.python.general:

> Is there a good book on foundational as well as advanced algorithms
> using Python?
>

Depends on what you mean by "foundational"...

Since Python has dynamic lists and dictionaries, I suspect you won't
find any textbook focusing on linked-list or hashed lookup algorithms
using Python.

You can probably implement them, but they're not going to be very
efficient. (And never "remove" an element from the linked-list
implementation because Python would shift all the other elements, hence
your "links" become invalid).
--
Wulfraed Dennis Lee Bieber AF6VN
HTTP://wlfraed.home.netcom.com/

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
ANN: PyInkblot - Creating Rorschach Inkblots using Genetic Algorithms placid Python 2 11-15-2007 10:59 PM
Questions on Using Python to Teach Data Structures and Algorithms efrat Python 14 11-09-2007 03:36 AM
Re: Questions on Using Python to Teach Data Structures and Algorithms Brendon Towle Python 8 09-29-2006 02:37 PM
Re: Questions on Using Python to Teach Data Structures and Algorithms Brendon Towle Python 4 09-28-2006 05:16 PM
Questions on Using Python to Teach Data Structures and Algorithms efrat Python 2 09-28-2006 11:42 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57