frog's Contributions
Below are the tutorials, code snippets, and resources frog has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
No Tutorials Submitted.
Code Snippets
Submitted: May 2, 2006        Views: 43565
the program defines a recursive function which can be used to find the determinant of a n x n matrix
Binary search in C++ by frog
Submitted: August 5, 2006        Views: 73278
this usees the binary searh technique for seraching elements from an array instead of normal traversal. it can be pretty useful incase the size of the array is very large
Submitted: August 11, 2006        Views: 3429
the snippet just gives the basic frame of a program which can be used for file I/O in C
Submitted: August 11, 2006        Views: 52922
this is a simple program which can find a substring in a given string
Submitted: July 30, 2006        Views: 54766
the following propgram can convert an infix expression to a postfix expression using stacks
Submitted: August 11, 2006        Views: 29301
the following function reverses an number.a commonly used method is store the number in a character array/string and use the string reversal algorithm but this function reverses a number stored as a integer/long data type and the result is also a integer/long
Submitted: July 30, 2006        Views: 12507
this is a simple program that can reverse a string implementing a stack algorithm
Submitted: August 11, 2006        Views: 11611
this code sorts an array using recursion
Swap in C++ by frog
Submitted: August 11, 2006        Views: 17005
this program illustrartes two ways to swap two numbers one wof which would be known to all of us and another interesting way
This pointer in C++ by frog
Submitted: May 10, 2006        Views: 8555
this pointer' refers to the address of the object calling the member function.here is a program using it to make merit list (i have already posted this code in the c/c++ forum but seeing that it would be easy to miss i am posting it here too)