CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: nuzzle

Search: Search took 0.04 seconds.

  1. Re: find the median in a fix-sized moving window on a long sequency of data

    It looks like this suggestion actually is patented.

    http://www.google.com.tw/patents/about?id=kQwWAAAAEBAJ

    It's not that surprising really because median filtering is an important way to reduce...
  2. Re: find the median in a fix-sized moving window on a long sequency of data

    My second suggestion is to replace the binary search trees with fibonacci heaps, a max-heap for the left partition and a min-heap for the right. The total complexity will be the same but since many...
  3. Re: find the median in a fix-sized moving window on a long sequency of data

    In support of my previous suggestion here's a link that shows updates in O(1) are possible indeed,

    http://www.tcs.fudan.edu.cn/rudolf/Paper/248tree_ijfcs.pdf

    My suggestion requires that succ...
  4. Re: find the median in a fix-sized moving window on a long sequency of data

    I don't know for sure but I have a suggestion.

    Say there's a search tree that's used to keep the numbers within the sliding window in sorted order. The median is the middle number in the tree.
    ...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured