[algogeeks] Re: can someone redirct me to the algorithm for "cross correlation" so i can implement it?

2006-05-23 Thread adak
Try "algorithm cross correlation". You'll get a bunch. Adak --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com To unsubscribe

[algogeeks] Re: How to merge two unsorted single linked list to get a sorted list

2006-05-23 Thread Kim Sewon
I don't know what it means exactly. But how about using the BDB(Berkely Database).     2006/5/23, Gene <[EMAIL PROTECTED]>: Rahul K wrote:> Can somebody tell the fastest and the most optimized way to merge two> unsorted singly linked list to get a sorted linked list. Unfortunately, Rahul, the merg

[algogeeks] Re: To get length K sub-sequence strings fast?

2006-05-23 Thread Gene
[EMAIL PROTECTED] wrote: > Hi Gene, > can u tell me what is the time complexity of your code? > > VishnuPriya The code is copied below. (Note I fixed a typo in the original; the variable "ir" should have been delared an integer not a char.) Each iteration of the loop has constant run time. It

[algogeeks] Re: To get length K sub-sequence strings fast?

2006-05-23 Thread [EMAIL PROTECTED]
Hi Gene, can u tell me what is the time complexity of your code? VishnuPriya --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.co

[algogeeks] Re: How to merge two unsorted single linked list to get a sorted list

2006-05-23 Thread Gene
Rahul K wrote: > Can somebody tell the fastest and the most optimized way to merge two > unsorted singly linked list to get a sorted linked list. Unfortunately, Rahul, the merge operation is defined only for sorted lists. It has no meaning for unsorted lists. You can either join the two lists i