I have an ArrayList that has Double elements. I want to implement FFT(Fast Fourier Transform) on it. However I don't want to take a Java code somewhere else and copy it. How can I find the understandable dataflow diagram or pseudo code of FFT algorithm?
PS: My ArrayList variable is a one-dimensional List.