Maybe you meant this: Multidimensional Range Search in Dynamically
Balanced Trees.

> http://www.vision-tools.com/h-tropf/multidimensionalrangequery.pdf

There is surely a better way, but a Z-Curve traversal is like a
quadtree, or spatial index of 2-dimensional data, or binary matrix.
You can calculate the "Bigmin".


On Oct 4, 5:25 pm, mac adobe <macatad...@gmail.com> wrote:
> @chi .. can you please share what is this and how it resolves the issue at
> hand ?
>
> regards
> --mac
>
>
>
> On Mon, Oct 4, 2010 at 5:50 PM, Chi <c...@linuxdna.com> wrote:
> > Traverse the matrix in z-order, or hilbert-order. This is a heuristic-
> > algo.
>
> > On Oct 4, 1:51 pm, mac adobe <macatad...@gmail.com> wrote:
> > > Given a binary matrix, find out the maximum size square sub-matrix with
> > all
> > > 1s.
>
> > > For example, consider the below binary matrix.
>
> > >    0  1  1  0  1
> > >    1  1  0  1  0
> > >    0  1  1  1  0
> > >    1  1  1  1  0
> > >    1  1  1  1  1
> > >    0  0  0  0  0
>
> > > then a 3x3 1 matrix eists
>
> > > the second question is .. if such a matrix (square matrix does not
> > > exist) find one with maximum 1s .
>
> > > --
> > > thanks
> > > --mac
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Algorithm Geeks" group.
> > To post to this group, send email to algoge...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > algogeeks+unsubscr...@googlegroups.com<algogeeks%2bunsubscr...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/algogeeks?hl=en.
>
> --
> thanks
> --mac

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algoge...@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to