Popular Posts

Thursday, December 22, 2011

Converting Text file to wav file

Below Code can be used to convert any text file to wav file




Converting Text to wav File

Below code can be used to convert text to wav file:




Monday, September 12, 2011

Generate all the strings of n bits

Problem:
Generate all the strings of n bits.
Solution:
Subtract and Conquer.
Complexity: O(2^n)
Code: