fraction as index number?
-
given these inputs x = 4, S = [1 2 3 4 5 6 7 8 9 10], and n = 10 search (x,S,n) { i = 1 j = n while i < j { m = [(i+j)/2] if x > Sm then i=n+1 else j = m end if x = Si then location = i else location = 0 This algorithm is from my discrete math hw. I'm confused as to what Sm would equal on the first iteration because m would be $\frac{11}{2}$. If i use a fraction as the index do I round down? Is there a general rule for this? Am I making any sense? Help pls
-
Answer:
Yes, you should round down (or in other words, take only the integer part). $$[11/2]=[5.5]=5$$ This is known as the http://en.wikipedia.org/wiki/Floor_and_ceiling_functions in mathematics (usually there is a floor(x) function in programming languages).
bangsauce at Mathematics Visit the source
Related Q & A:
- Is there a maximal finite depth infinite index irreducible subfactor?Best solution by Mathoverflow
- Which should be used after messing up clustered index? Update statistics, Reindex or Reorganize?Best solution by Database Administrators
- What happens when CREATE INDEX gets interrupted (manually or accidentally?Best solution by Database Administrators
- Why query optimizer doesn't use negative filter index?Best solution by Database Administrators
- What are the mole fraction and the partial pressure of each gas?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.