I am implementing Data Mining Algorithm in .NET 4.0 (C#) and LINQ will work and I need some helps.
I have a List A and a Dictionary B. How to sort A by value B. For example A = {b, d, c} and B = {(b,2),(c,5),(d,1),(e,3)}. I need sort A -> A = {c, b, d}.