lostmartian / FFT---Polynomial-Operations

Repo to hold various polynomial algorithms I have been learning

Repository from Github https://github.comlostmartian/FFT---Polynomial-OperationsRepository from Github https://github.comlostmartian/FFT---Polynomial-Operations

Fast Fourier Transform

Polynomial Multiplication

Build Status

Polynomial Multiplication is a very necessary thing in mathematics and engineering. Finding ways to solve this problem in low time complexity is a big goal. A naive approach can fetch you a O(n^2) algorithm. With FFT we can scale this down to O(nlogn) using Divide and Conquer strategy applied on Discrete Fourier Transform(DFT).

Resources

About

Repo to hold various polynomial algorithms I have been learning


Languages

Language:C++ 100.0%