Search:

Type: Posts; User: whatman

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    9,112

    Thanks Salem. Much appreciated. Could someone...

    Thanks Salem. Much appreciated.
    Could someone let me know whether I was right about the differences between radix sort and radix exchange.
    Cheers.
  2. Replies
    1
    Views
    9,112

    radix sort and radix exchange sort.

    Hi, I've been searching the net for info on the radix exchange sort algorithm, inparticular, its order of complexity. Its got a little confusing for me as I found a lot of stuff on radix sort. Is...
  3. Replies
    6
    Views
    2,607

    Thanks for the help guys. Money, you're function...

    Thanks for the help guys. Money, you're function does the trick. I wouldn't have got that one. Seems obvious now. Nice one.
  4. Replies
    6
    Views
    2,607

    iterative equation function

    hi, im trying to write a program to solve the equation
    A(n) = 2A(n-1)-3A(n-2) for n>1.
    A(0) = 1 and A(1) = 2.

    I've already wrote a recursive program to solve it but am trying to get an...
  5. Replies
    5
    Views
    1,287

    Thanks guys, it turns out it was my maths. I was...

    Thanks guys, it turns out it was my maths. I was substituting the equation as opposed to the value of the equation, which got complicated. My bad, but thanks again.
  6. Replies
    5
    Views
    1,287

    Sorry, its meant to be n = 0, A = 1. Thanks for...

    Sorry, its meant to be n = 0, A = 1.
    Thanks for the help Salem, I shall try it. I did try it when I started, but the program kept crashing, but I will try again and let you know.
  7. Replies
    5
    Views
    1,287

    recursive math funcction

    hi, i am writing a function to return the value of a function A(n), where:
    A(n) = 2A(n-1) - 3A(n-2) for n>1

    when n = 0, A = a and when n = 1, A = 2.

    I've came up with the...
Results 1 to 7 of 7