Skip to content
Advertisement

An efficient way to check index out of bounds

I have an n x n 2D array, and need to connect random points to four neighbors (sorry I added the picture, but it seems one has to click on the link for the image to show).

Click to see the image

I would like to use code like this:

JavaScript

The problem I am having now is the index out of bounds for the ones on the edge. Originally I created array of size (n + 2) * (n + 2) to resolve the issue. That preserved the simplicity of the code, however I failed the storage requirement for the assignment. The array has to be n * n.

I researched and revised my algorithm

JavaScript

Right now, it would connect the point to itself it is out of bounds.My question is — is there a better/cleaner way to check if indices out of bounds? Thank you all.

Advertisement

Answer

I would personally goes for:

JavaScript

And have connect does this:

JavaScript

It fully assumes that your grid is a matrix of N*N.

You could also don’t care about checking:

JavaScript

I do think it is nasty because catching tend to cost more than checking – even if the check is done twice.

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