I have a linkedhash map which has a key of the sentence number and the value the score of the sentence.
4=104
3=104
1=106
7=130
8=139
9=168
2=199
5=330
I need to keep it in this order because it is a text summiraztion program. I also have a array of string which contains each of the sentences which have been seperated using puncutation. How would I create a new string array which the first key will be sentence 4 corresponding to the first key in the linkedhash map. The last key in the array will be sentence 5.
Thanks
Something like -
Use orderedSentenceList now