I've figured out the java problem I was faced with.
It's working now (finally) and even bubble sorting correctly. It currently is recording upper case words separately from the lower case equivalents ( This and this are counting as different words ) I need to double check with the prof if he wants me to shift it all to lower before I store the tokens in their array.
But it works! Even getting the bubble sort converted to handle text arrays wasn't as difficult as I thought it would be. My hardest problem was overcoming my mental block on just parsing the tokens and building my linked arrays with unique words/counts. I kept running off the index into nulls in my arrays causing ugly run time errors. I don't know why it took me so long to figure out what was happening there. But it's fixed now.
It's working now (finally) and even bubble sorting correctly. It currently is recording upper case words separately from the lower case equivalents ( This and this are counting as different words ) I need to double check with the prof if he wants me to shift it all to lower before I store the tokens in their array.
But it works! Even getting the bubble sort converted to handle text arrays wasn't as difficult as I thought it would be. My hardest problem was overcoming my mental block on just parsing the tokens and building my linked arrays with unique words/counts. I kept running off the index into nulls in my arrays causing ugly run time errors. I don't know why it took me so long to figure out what was happening there. But it's fixed now.