For a numerical utility used in Metron coding workflows, implement Fibonacci number calculation using three approaches: an iterative algorithm, a direct recursive algorithm, and a recursive algorithm with memoization.
Define F(0) = 0, F(1) = 1, and F(n) = F(n - 1) + F(n - 2) for n >= 2. Implement one function that accepts a non-negative integer n and a method name, then returns the corresponding Fibonacci value.
Implement fibonacci(n, method), where n is an integer and method is one of "iterative", "recursive", or "memoized". Return an integer containing F(n). For valid inputs, all three methods must return the same value.
The recursive method may use the direct exponential recurrence and is intended for smaller inputs. The iterative and memoized methods must support the largest permitted input efficiently.
def fibonacci(n, method):