Follow

Translate

Tuesday, March 15, 2016

What is Ackermann Function?



(a)  If m = 0 , then A(m, n) = n+1.

(b)  If m != 0 but n = 0, then A(m, n) = A(m-1, 1).

(c)  If m != 0 but n != 0, then A(m, n) = A(m-1, A(m, n-1)).

Obsrve that A(m, n) is explicitly only when m = 0. The base criteria are the pairs

            (0, 0),   (0, 1),  (0, 2),  (0. 3) ,................., (0, n), .........

The value of A(1, 3) is calculated in solved problem.
If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :CSE SOLVE

Related Posts:

  • Insertion Algorithms Insertion Algorithms: (a)  Checking to see if space is available in the AVAIL list.  If not, that is, if AVAIL = NULL, then the algorithm will print the message OVERFLOW. (b)  Removing the first node fr… Read More
  • INSERT(INFO, LINK, START, AVAIL, ITEM) Algorithm: INSERT(INFO, LINK, START, AVAIL, ITEM) This algorithm inserts ITEM into a sorted linked list. 1.   [Use Procedure FINDA to find location of the node preceding ITEM]   Call FINDA(INFO, LINK, … Read More
  • FINDA(INFO, LINK, START, ITEM, LOC) FINDA(INFO, LINK, START, ITEM, LOC) This procedure finds the location LOC of the last node in a sorted list such that INFO[LOC] < ITEM, or sets LOC = NULL. 1.  [List of empty?]   If START = NULL, then … Read More
  • DELLOCHL(INFO, LINK, START, AVAIL, ITEM) DELLOCHL(INFO, LINK, START, AVAIL,  ITEM) 1.  [Use Procedure FINDBHL to find the location of N and its preceding node.]   Call LINDBHL(INFO, LINK, START, ITEM, LOC, LOCP). 2.  If LOC = NULL, the… Read More
  • FINDBHL(INFO, LINK, START, ITEM, LOC, LOCP) Procedure: FINDBHL(INFO, LINK, START, ITEM, LOC, LOCP) 1.  Set SAVE : = START and PTR : = LINK[START].  [Initializes pointer]. 2. Repeat while INFO[PTR] != ITEM and PTR != START.    Set SAVE : = P… Read More

0 comments:

Post a Comment