for(Iterator it2 = tries.iterator();it2.hasNext();)
{
tobedeleted2 = (FpiRightTree) it2.next();
tobedeleted2.setIndex(f);
f = f+1;
}
I want to that in thread function.can someone give me help in creating thread?
Tries is global. so in all threads it will be shared. i want to call thread.
to do a for loop from 1 to 3000 and another for loop from 3001 to 6000
is it worth it do threading for this? I want to speed it up.