Re: building a GUI

2007-09-24 Thread Oleg Batrashev
On Sep 23, 5:21 pm, yadin <[EMAIL PROTECTED]> wrote: > if i were up to make a GUI chich are the advantages of choosing python > over matlab or java? Haven't seen any free visual layout program for swing, swing is somewhat messy - unnecessary complex layout classes. Compile - run cycle without visu

Re: merits of Lisp vs Python

2006-12-08 Thread Oleg Batrashev
Mark Tarver wrote: > How do you compare Python to Lisp? What specific advantages do you > think that one has over the other? > > Note I'm not a Python person and I have no axes to grind here. This is > just a question for my general education. > > Mark Im myself python programmer with C,C++,Java

Re: best way to align words?

2006-12-02 Thread Oleg Batrashev
> thanks for all your replies, i'm now looking to dynamic programming... Id better warn you before you go further. "Notice that LCS is often defined to be finding all common subsequences of a maximum length. This problem inherently has higher complexity, as the number of such subsequences is expon

Re: best way to align words?

2006-11-30 Thread Oleg Batrashev
> i would like to write a piece of code to help me to align some sequence > of words and suggest me the ordered common subwords of them Im not sure what you want, but in case you are guy who knows how quicksort and Djikstra algorithms work :) and wants to find out more. There are many algorithms