Give the exact solution (i.e., with precise constants) to the following recurrence: T(n)=2T(n/2)+2.
a) T(n)=2nlogn+n
b) T(n)=nlogn
c) T(n)=nlogn+n^2
d) T(n)=n^2