-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFibTest.swift
157 lines (87 loc) · 2.94 KB
/
FibTest.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
//
// MathTest.swift
// SwiftStructures
//
// Created by Wayne Bishop on 10/29/15.
// Copyright © 2015 Arbutus Software Inc. All rights reserved.
//
import XCTest
/*
note: algorithms associated directly with the Int.swift
class extension.
*/
@testable import SwiftStructures
class FibTest: XCTestCase {
var count: Int = 0
override func setUp() {
super.setUp()
}
//MARK: Sequence Based
//iterative technique
func testFibonnaci() {
let positions: Int = 4
let results = positions.fibNormal()
//test results
buildResultsTest(results)
}
//recursive technique
func testFibRecursive() {
var positions: Int = 4
let results = positions.fibRecursive()
//test results
buildResultsTest(results)
}
//closure option
func testFibClosure() {
let positions: Int = 4
let results = positions.fibClosure { (sequence: Array<Int>!) -> Int in
//initialize and set formula
let i: Int = sequence.count
let total: Int = sequence[i - 1] + sequence[i - 2]
return total
}
//test results
buildResultsTest(results)
}
//MARK: Single Answer
func testFibExponential() {
let positions: Int = 4
let result = fibExponential(n: positions)
print("the result is \(result)..")
print("count is: \(count)")
}
func testFibMemoized() {
let positions: Int = 4
let result = positions.fibMemoized()
//test trivial condition
if result < 2 {
XCTFail("Test failed: fib sequence not calculated..")
}
}
//MARK: Helper Functions
//helper function - test results validity
func buildResultsTest(_ r: Array<Int>!) {
if r == nil {
XCTFail("fibonnaci test failed..")
}
//check calcuated answer against basic formula..
if r[r.endIndex - 1] != r[r.endIndex - 2] + r[r.endIndex - 3] {
XCTFail("fibonnaci test failed..")
}
}
/*
notes: function included for demonstration purposes and should not be
considered as best practice.
*/
func fibExponential(n: Int) -> Int {
print("fibExponential called..")
count += 1
if n == 0 {
return 0
}
if n <= 2 {
return 1
}
return fibExponential(n: n-1) + fibExponential(n: n-2)
}
}