Follow

Translate

Saturday, April 30, 2016

Complexity;Space-Time Tradeoffs

Briefly describe the notations of (a) the complexity of an algorithm and (b) the space-time tradeoff of algorithms  :

(a)  The complexity of an algorithm is a function f(n) which measures the time and/or space used by an algorithm in terms of the input size n.

(b) The space-time tradeoff refers to a choice between algorithmic solutions of a data processing problem that allows one to decrease the running time of an algorithmic solution by increasing the space to store the data and vice versa.
If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :CSE SOLVE

Related Posts:

  • DELLSTH(INFO, LINK START, AVAIL) Algorithm: DELLSTH(INFO, LINK START, AVAIL) This algorithm delets the last node from the header list 1.         [List empty?] If LINK[START] = NULL, then: Write: UNDERFLOW,a nd Exi… Read More
  • One Way List Representation of a Priority Queue One Way List Representation of a Priority Queue:  One way to maintain a priority queue in memory is by means of a one-way list, as follows: (a)  Each node in the list will contain three items of information: an … Read More
  • QINSERT(QUEUE, N, FRONT, REAR, ITEM) QINSERT(QUEUE, N, FRONT, REAR, ITEM) This procedure inserts an elements ITEM into a queue. 1.    [Queue already filled?]           If FRONT = 1 and REAR = N, or … Read More
  • What is Priority Queues? Priority Queues:  Priority queue is a collection of elements such that element has been assigned a priority and such that the order in which elements are deleted and processes comes from the following rules: (1) … Read More
  • (QuickSort) This algorithm sorts an array A with N elements. (QuickSort)  This algorithm sorts an array A with N elements. 1.    [Initialize. ] TOP  : = NULL. 2.  [PUSH boundary values of A onto stacks when A has 2 or more elemnts.]    … Read More

0 comments:

Post a Comment