struct string_node
{
 char str[];
 int length;
 struct string_node *ptr;
}

now traverse the strings and saving strings in "str[]",their length in
"length" and point it to next string_node....


....

On Sun, Sep 18, 2011 at 4:47 PM, pooja <[email protected]> wrote:

> Can some one please help me with this..
> the problem is to find  the longest substring in a list of around 100
> strings..??
> any idea..
>
> --
> You received this message because you are subscribed to the Google Groups
> "Algorithm Geeks" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to