I am developing a programme about string analyses. I've done levensthein distance algorithm but it is just applicable for two strings. Now, I want to run more strings than two, concurrently. Like, from text file;
S1 : "0123412315",
S2 : "324153243",
S3 : "12354244",
S[n] : "......."
So, Firstly, it has to calculate between S1 and S2 then S1 and S3, S2 and S3 and so on, respectively. Do you have any idea about this ? I mean, I don't want to any code. Let me know pseudo-code or implementation of this part. Thanks in advance.