IIEST, Shibpur

Indian Institute of Engineering Science and Technology, Shibpur

(Formerly Bengal Engineering and Science University, Shibpur)

Empowering the nation since 1856

आई आई ई एस टि, शिवपुर

भारतीय अभियांत्रिकी विज्ञान एवं प्रौद्योगिकी संस्थान, शिवपुर

(पूर्व में बंगाल इंजीनियरिंग एंड साइंस यूनिवर्सिटी)

१८५६ से देश को सशक्त बनाना

Assignment Sheet 1 (Date: January 8, 2013)

Write Recursive Functions in C for each of the tasks stated below. Also write main functions to demonstrate each of those functions.

Background Theory

Definition: An algorithm or function is recursive if it refers (calls) itself directly or indirectly.
Eg,

  1. function F1 calls F1 directly
  2. function F1 calls F2 and F2, in turn, calls F1. F1, thus, calls F1 indirectly.

Recursion is a totally different method of solving problems. Conventional problem solving methods consists of decomposing the solution into steps, and executing each step in turn. The recursive way of solving a problem, on the other hand, is to reduce the problem into another problem that is exactly of the same type but simpler, and solving the new one instead. And how to solve the new one? It is just reduced into another simpler problem of exactly the same type, and so on, and so on, and so on...

Principle behind designing (developing) recursive algorithm (function):

Step 1. If the problem is too simple, solve it straight way [Basis Step]
Step 2. Otherwise beak the problem into similar but simpler problem with the target that at some point of time it will be simple enough to be solved straight way. [Recursion Step]

Problems

  1. Factorial:Factorial of an integer n
    1. If n = 1 then the result is 1 [Step 1]
    2. Else the result is (n X Factorial of (n-1)) [Step 2]
  2. Sum of n integers:
    1. If n = 1 then the sum is the given integer itself [Step 1]
    2. Else the sum is (1st integer + sum of remaining (n-1) integers) [Step 2]
  3. String comparison:Compare strings s1 and s2 - print 0 if both are same, print -1 if alphabetically s1 comes before s2 and print 1 if alphabetically s1 comes after s2.
    1. If s1 and s2 both are empty strings then print 0. If the 1st character of s1 alphabetically comes before the 1st character of s2 print -1. If the 1st character of s1 alphabetically comes after the 1st character of s2 print 1. [Step 1]
    2. Else compare the rest of s1 with rest of s2 (that is, other than the 1 st characters, the remaining parts of s1 and s2,) [Step 2]
  4. Find largest among n integers
    1. If n = 1 then the single integer itself is the largest [Step 1]
    2. Else the largest integer is the larger one between the last integer and largest among theremaining integers. [Step 2]
  5. Find the HCF of two integers n1 and n2 (n1 >= n2)
    1. If n1 % n2 = 0, that is n1 divides n2 then n1 is the HCF [Step 1]
    2. Else the desired HCF is the HCF of two integers n2 and (n1 % n2) [Step 2]
  6. Search for a given integer num in a given list L of n integers (returns true if num occurs in L, otherwise returns false).
    1. If n = 0, that is L is empty, then return false. If the first item of L is num then return true. [Step 1]
    2. Else search for num in the remaining list of (n-1) integers (that is L without the first item) [Step 2]
  7. Print a given list L of n items in reverse order
    1. If n = 0, that is, L is empty, then do not print anything. [Step 1]
    2. Else print the last item followed by print the remaining list of (n-1) items in reverse order (that is L without the last item) [Step 2]
  8. Find out whether the given string S of length n is a palindrome or not (returns true if S is a palindrome, returns false otherwise). [A palindrome is a string if it reads same from both the ends. Eg. ABCDCBA]
    1. If n=0 or n=1, that is, S is empty or has a single character, then return true. [Step 1]
    2. If the first and last characters of S are different then return false, else find out whether the remaining string (S without the first and last characters) is a palindrome or not. [Step 2]
  9. Replace all occurrences of the character c1 in the string S by the character c2.
    1. If S is empty, then, do not do anything. [Step 1]
      Else
    2. if the first character of S is c1, then replace it by c2. Replace all occurrences of the character c1 in the remaining string (S without the first character) by the character c2. [Step 2]
  10. Sorting an array A of n integers in ascending order.
    1. If n is 1, then, do not do anything. [Step 1]
      Else
    2. Find i so that A[i] is largest and then interchange A[i] and A[n]  and Sort first n-1 elements of A. [Step 2]
  11. Let start point to the first node of a singly linked list. SortLL(start) returns a pointer to the first node of the sorted linked list. [Each node contains a integer key on which sorting has to be performed.]
  12. Let T be a tree of degree n stored in an array A. Let the nodes of T store positive integers. findLargestNode(A, n) returns the largest integer stored in T.

Assignment Sheet 2 (Date: January 15, 2013)

Topic: Functional Programming

  1. Show that all primitive recursive functions can be computed by Scheme Lisp Programs.

  2. Write a Scheme Lisp Program to compute factorial of a natural number.

  3. Write a Scheme Lisp Program to compute n-th Fibonacci Number, where n is a natural number. 

  4. Write a Scheme Lisp Program to compute the HCF of two natural numbers n1 and n2 (n1 >= n2).

  5. Write a Scheme Lisp Program to find the largest among n natural numbers.

  6. Write a Scheme Lisp Program to compute the sum of n natural numbers.

 

Assignment Sheet 3 (Date: January 29, 2013)

Topic: Multiple representation of same data in Scheme Lisp

  1. Build up two packages for complex number arithmatic where in the first package assume cartesian representation and in the second one assume polar representation for complex numbers.
  2. Modify the packages of step 1 and  build up a single package that can perform arithmatic operations on complex numbers irrespective of their representations (cartesian or polar).

Assignment Sheet 4 (Date: Februaqry 5, 2013)

Topic: Implementation of Set in Scheme Lisp for set operation like Union, Intersection and difference

  1. Assume that elements of the sets are integers
  2. Extend the package of step 1 so that elements themselves can be a sequence of one integer (say, roll number) and one string (say, name)