Saturday, February 2, 2008

RECURSION

Recursion means self-refrence. A recursive function is function whose defination is based upon itself. It means that a recursive function is a function which have the statements calling itself. We can say that the effect of recursion is same as the looping and the Iteration.

Types of Recursion.

1. Linear Recursion
2. Binary Recursion
3. Mutual Recursion
4. Tail Recursion
5. Nested Recursion
Now we will briefly discuss about the Types of recursion.
Linear Recursion:-
A function that only makes a single call to itself each time the function runs.
Eg. Factorial
Binary Recursion:-
Some recursion don't have just one call they have two or more function with two recursive call are refer to the binary recursion of function.
Eg:-
intchoose(int n, int k)
{
if (k==0//n==k)
return (1);
else
return (choose (n-1,k) + choose (n-1,k-1));
}
Mutual Recursion:-
A recursive function don't neccessary to call itself some recursive function works in pairs or even in larger group.
Eg:-
int is_even(unsigned, int n)
{
if (n==0)
return (1);
else return (is_odd(n-1));
}
int is_odd (unsigned intn)
{
return (is_even (n));
}
Nested Recursion:-
A nested recursions, the argument to the recursive function is the recursive function itself.
Eg:-
int ackerman(int m, int n)
{
if (m==0)
return (n+1);
else if (n==0)
return (ackerman (m-1,1));
else return (ackerman (m-1, ackerman(m,m-1));
}
Tail Recursion:-
A recursion procedure where a recursive call is the last action to be taken by the function.
Eg:-
int gcd (int m, int n)
{
int r;
if (m
return gcd (m,n);
r=m/n
if (r==0) return (n);
else
return (gcd (n,r));
}
Narendra Kumar Khoiya
MITS College Gwalior.

Wednesday, January 30, 2008

Software Technology Parks of India


In Gwalior 23rd Jan 2008 Our chief minister shri shivraj singh chouhan & sansad shri Jyotiradity scindhiya put the base of STPI ( Software Technology Parks of India) On this occassion chief minister said that it will enhance the Job opportunity in gwalior. And IT park will take gwalior to further milestone of development and will get gwalior in to the race of metro cities. In India the concept of making IT Parks arise in 1991 from there it has created various Job oppurtunities for the software technicals. I think that is very good for our City.

Few point about Banglore IT Park

Software Technology Parks of India (STPI), Bangalore is a society under the Ministry of Information Technology, Govt of India. Recognizing the immense potential of the Indian Software Industry, the Ministry of Information Technology (MIT), Govt. of India brought out in 1986, a policy document on "Computer Software Export, Software Development and Training". Subsequently, in 1990, the Ministry of Information Technology (MIT), Govt. of India, formulated the Software Technology Park (STP) scheme to promote & facilitate software exports from India. Offering new fiscal incentives, state-of-the-art infrastructure and an investor friendly environment, the scheme has contributed to a steep growth in the Software Exports. Get more information about STPI and its activities.To get more details about the STPI Infrastructure in various cities in Karnataka.

International Tech Park Limited (ITPL)
The International Tech Park, Bangalore offers a superb business advantage to corporations seeking a foothold in India, one of the world's biggest emerging markets. The futuristic Park is built to exacting international standards, supported by state-of-the-art infrastructure. Amidst a refreshing and aesthetically appealing environment, the Park offers a one-stop solution integrating office, production, commercial, residential and recreational needs in a single location. The International Tech Park, Bangalore is meticulously designed and built to suit the requirements of international hi-tech companies in the field of information technology, software development, electronics, telecommunication, research and development, financial services and other non-polluting hi-tech industries. by exploring thier website.

Electronics City
Electronics City is an industrial park spread over 330 acres exclusively meant for electronics industries. It houses more than a hundred industries, including IT industry leaders such as Motorola, Infosys, Siemens, ITI, and Wipro etc. The area is maintained by Keonics, which provides all the necessary infrastructure.

Tuesday, September 25, 2007

INDIA WINS 20-20 CUP


DHONI & COMPANY WINS THE TWENTY TWENTY WORLD CUP BY BEATING THE PAKISTAN IN THE FINAL. AND MAN OF THE MATCH WAS IRFAN PATHAN.