Skip to content
Advertisement

update attribute a element in arraylist on java?

I have a class

JavaScript

extent fron class :

JavaScript

Now in token i have arraylist token , i want to update attribute frequency of token in Texchunks when have more than one tokens same .

For clearly a give a example :

Texchunks :” in particular in domain and range in some “

So have 8 token : in,particular,in,domain,and,range,in,some

i want update attribute frequency for token : in this example when i get attribute frequency of token “in” must return 3

it mean when i call : get frequency of Texchunks when dislay :

JavaScript

here my code :

JavaScript

Here is method compare two token

JavaScript

Advertisement

Answer

Your incomplete algorithm doesn’t work because j doesn’t find in previous position of i. A posible solution could be:

  • updateFrequencyOfTokenInTextChunks method:

    JavaScript

My solution doesn’t return any type, because I understand the update (updateFrequencyOfTokenInTextChunks) should modify the parameter (TextChunks tc) and no return a clone.

  • count auxiliar method:

    JavaScript

Good luck!

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement