Skip to content

zlosa/ios-fibo-finder-001-prework-ios

 
 

Repository files navigation

Fibonacci Finder

Objectives

  1. Practice storing and retrieving NSNumber values in a collection.

Introduction

Programmers often utilize mathematical concepts, proofs, and algorithms to give themselves direction in writing an exercise. For this exercise, we're going to challenge ourselves to write a method that will calculate the Fibonacci Sequence to a specified length.

The Fibonacci Sequence is defined by the formula:

Fn = Fn-1 + Fn-2

with the accepted seed values as either:

F0 = 0, F1 = 1, or

F1 = 1, F2 = 1

and begins:

F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12
0 1 1 2 3 5 8 13 21 34 55 89 144

What the above information means is that, following the two initial values (in our case, 0 and 1), each number is the sum of the two numbers preceding it in the sequence. If 0 is the zeroeth number (Hint: remember that arrays start at index 0), then the first number is 1, the second number is 0 + 1 = 1, the third 1 + 1 = 2, the fourth 1 + 2 = 3, the fifth 2 + 3 = 5, and so on into infinity.

Don't get intimidated by the math! Whether or not you recall learning about the Fibonacci Sequence in high school or college math class—if you've ever seen a snail shell or a pine cone you're already familiar with it. One of the amazing aspects of the Fibonacci Sequence (and of much of mathematics as a whole) is how prevalent it can be found in nature. Snail shells follow the Fibonacci Spiral (a geometric representation of the number sequence), while pine cones and sun flowers display the shape of Vogel's model (which relies on numbers in the Fibonacci Sequence).

Take a moment now (or save it for a study break later) to read about the history of the Fibonacci Sequence (its oldest known anthropological roots are actually in Sanskrit prosidy in India dating as far back as 200 BC) and look at some nature photography detailing Fibonacci geometry. If you're interested in some numerology, Arthur Benjamin's TED Talk is a six-minute video detailing how the Fibonacci Spiral and the Golden Ratio (1.618033...) are derived from the sequence.

Instructions

Open the ios-fibo-finder.xcworkspace file.

  1. Navigate to the FISAppDelegate.h header file. Declare one method called arrayWithFibonacciSequenceToIndex: which takes one NSUInteger argument called index and returns an NSArray.

  2. Navigate to the FISAppDelegate.m implementation file. Use autocomplete to define the method implementation to return nil so that the build will succeed. Run the tests with Uto see that they fail.

  3. Modify the implementation of arrayWithFibonacciSequenceToIndex: to create a new NSMutableArray variable called sequence that also serves as the method's return at the end of the implementation.

  4. To build the sequence in the array, we're going to need a loop. Between creating the sequence array and returning it, declare a for loop whose counter is limited by index + 1 and increments by one.

  5. Since the sequence requires the two previous numbers to calculate the next one, we need to prime the sequence. To do this, we're going to need to manually pass in @0 and @1 on the first two iterations of the loop. We can detect the iteration number by checking i against 0 and 1 respectively.

  • Create an if statement that checks when i is equal to 0. If it is, call the addObject: method on the sequence array with @0 submitted as the argument.
  • Chain an else if statement that checks when i is equal to 1. If it is, call the addObject: method on the sequence array with @1 submitted as the argument.
  • If you wish to inspect your sequence, insert an NSLog() right before the return statement that prints the sequence array to the console.
  • Run the tests with U to see that the first two tests pass.
  1. Now it's time to implement the algorithm. Chain an else statement to the if and else if statements to set a default behavior for every iteration of the loop after the first two. In order to calculate the next fibonacci number in the sequence, we're going to need to:
  • pull the previous two numbers out of the sequence array,
    Hint: You can subscript an array with an operation, such as i-2.
  • convert them from NSNumbers to integer primitives,
  • calculate the next fibonacci number in the sequence by the finding the sum of the two converted integers, and
  • add the new fibonacci number to the sequence array.

Use the tests and NSLog()ing to help you determine when your implementation is correct.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 80.9%
  • Shell 12.8%
  • Ruby 6.3%