fft.c--This computes an in-place complex-to-complex FFT
x and y are the real and imaginary arrays of 2^m points.
dir = 1 gives forward transform
dir = -1 gives reverse transform
stdafx.h : 標準系統包含文件的包含文件。
Microsoft C 和 C++ 編譯器提供了用于預編譯任何 C 或 C++ 代碼(包括內聯代碼)的選項。利用此性能特性,可以編譯穩定的代碼體,將已編譯狀態的代碼存儲在文件中,以及在隨后的編譯中,將預編譯的代碼與仍在開發的代碼結合起來。由于不需要重新編譯穩定代碼,因此后面每次編譯的速度都要快一些。