Re: Data Structure Speed
Because it's hard as Hell to follow, that's why.
Why is it irritating?
Top-posting: Placing the response before the "responded to."
Name an irritating habit encountered on Usenet.
(Please don't top-post. I've rearranged things to make
them readable.)
capkrugers@gmail.com wrote On 07/18/06 14:10,:
Eric Sosman wrote:
[...]
It's not clear (to me, anyhow) exactly what you mean
by "these operations." You've mentioned need to "grab
certain ones" by their indices, which I guess means "find
the k'th integer of the j'th set;" if so, set[j][k] seems
likely to be quicker than most alternatives. It's possible
that bigset[j*KRANGE+k] might be a milliquiver faster, but
any difference is unlikely to be noticeable in the context
of "an interactive program." (The user "interacts with
the elements onscreen," and it's a pretty twitchy user
who can click his mouse even ten times per second!)
But I'm not at all sure what the "change numbers at
specified points" operation is -- it's probably not just
set[j][k] = newvalue, because the mention of nested for
loops suggests something more involved is going on. Please
describe this second operation more precisely, perhaps by
exhibiting the code you're now using.
What I meant by "grab certain ones" was, just as you said, an operation
like myArray[j][k] = newValue . However, for each value of j, from 0 to
N - 1 (where N is the size of the array), I need to update the same
values of k (which could include any 2 to M values of k, where M is the
maximum value of k). I thought that some kind of data structure might
be optimized for an iteration through at least the first dimension of
the set, or that something might be faster than just some for() loops
to go through the two dimensions of the array.
It is possible that you might gain a smidgen of speed by
reversing the indices, so the first is held fixed while the
second varies. In light of everything else that's going on,
though, I doubt the improvement (if any) would be significant.
Knuth wrote that "Premature optimization is the root of
all evil." Jackson wrote of optimization "Don't do it" and
"Don't do it yet." Years and years and years of experience
with software development suggest that even the best of
programmers, the super-wizard all-singing all-dancing Ninja
bit-bangers, are woefully bad at predicting which micro-
optimizations will be worthwhile and which would simply be
silly. In the situation you describe, it is exceedingly
unlikely that fiddling with the array indices will make a
perceptible difference. It's like driving naked to reduce
your car's weight and improve the fuel consumption; taking
the boat trailer off the back would be more to the point.
Mouse clicks aren't what I'm worried about--the interaction is
primarily dragging the mouse, so latency is very noticeable and
counteractive to productivity while using the program (hey, you can't
expect your users to be patient, no matter how fast they can click!).
For my own amusement I wrote a little jigsaw program. It
carves up an image into squiggly-shaped pieces that are then
painted into little rectangular JComponent areas with transparent
backgrounds, and then dragged around the screen with the mouse.
Just think of all that's going on, and shudder! There's all the
Swingstuff to figure out which of some hundreds of JComponents
is clicked, then there's the erasing and repainting of the dragged
piece as it's moved around the screen, and this in turn requires
finding all the other pieces that were formerly obscured and may
need to be repainted, and then there's all the transparency stuff
to fret about ... This thing is going to be an unresponsive dog!
Nah. Works fine. The pieces follow the mouse around just
as nicely and promptly as you could wish for. If I were somehow
to speed the thing up a hundredfold, it wouldn't make the least
bit of difference: the program is already as fast as it needs
to be.
I don't think the time it takes to access or modify any of the entries
in the array contributes greatly to the slight time delay in using the
mouse. The program is slowed down the most by drawing lines (the
program requires a separate line to be drawn for every entry in the
first dimension: k lines for every value of j) on the screen. I was
just trying to definitively identify the bottleneck in updating the
data and then redisplaying it. But that's another question entirely...
Compared to all the image-blitting and area intersection and
alpha-composite stuff my jigsaw program is probably doing, your
line-drawing thing should be a piece of cake. Well, maybe it
won't be if you're redrawing a hundred thousand lines every time
the mouse twitches -- but if you're drawing that many, you might
as well just fill the whole screen with the line color and call
it quits!
--
Eric.Sosman@sun.com