A set of rules or specified instructions required for performing a task or solving a problem. This includes written code as well as other bits of information working together in an attempt to get you what you’re looking for. A social media newsfeed, for example, has an algorithm designed to display content that is interesting to you as the viewer and determines how far your own content reaches when shared.
2 answers
The full Question...
Suppose 3 algorithms are used to perform the same task for a certain number of cycles. Algorithm A completes 3 cycles in one minute. Each of Algorithm B and Algorithm C respectively completes 4 and 5 cycles per minute. What is the shortest time required for each Algorithm to complete the same number of cycles?
1 answer
Bresham's Mid point circle drawing algorithm.
1 answer
algorithm on multiple queues in a single dimensional array
1 answer
algorithm to convert a number representing radix r1 to radix r2
1 answer
are sahi se ans do dia karo.My ques is how many bits are required for 16-bit system in booth's algorithm?Pls reply me soon
1 answer
The easiest way to write a generic algorithm is to simply use the quadratic formula. If it is a computer program, ask the user for the coefficients a, b, and c of the generic equation ax2 + bx + c = 0, then just replace them in the quadratic formula.
1 answer
algorithim and flow chart of odd number 1 and 50
1 answer
read the value A,b
store the result of subtraction of a,b in continer subtraction
display subtraction
1 answer
Algorithms use the language of mathematics, logic and computers. They are independent of any particular natural language like English or Chinese.
1 answer
1 answer
move from, to, spare, count:
move from, spare, count-1
single_move from, to
move spare, to, count-1
1 answer
int height;
print("Enter height");
height=getString();
1 answer
int n = 2 // start at 0 if you really want to
while n < some arbitrary limit
n = n + 2
1 answer
sum = 0
for(n = 0; n <= 10; n += 2) sum += n;
1 answer
Yes. At least, that is one way of presenting an algorithm. Other ways include a verbal description, and pseudocode.
1 answer
It's basically the algorithm to break a number down to digits. Then each digit would be represented as a natural binary number on its own.
To break it down to digits, get a remainder after division with 10 (that's the last digit), then divide the number by 10 to remove that digit. Repeat until there are digits, and store each one into an array (or print them to screen without storing).
1 answer
The algorithm for bubble sort, also know as pair exchange...
Bubble sort is so named because out of order elements "bubble" to the end of the array, moving one step per inner loop iteration.
As stated above, the algorithm is slow because it takes a while for a significantly out of order element to reach its final point when it needs to come closer to the beginning of the array. It can be improved by introducing a "distance" parameter, initially set to one half of the array size, and using that distance in step 3 to choose the second element. After the algorithm is completed for that distance, the distance is halved, and we iterate the entire algorithm until the distance is only one. (This variation is more formally known as merge exchange, but it still retains the "bubble" characteristic.)
1 answer
One way to begin evaluating problems in algebra and calculus is to test the values for the variables that should not be there. This is known as the "false position method".
1 answer
It's an algorithm to find the spanning tree in decision maths. The method is:
1 answer
The question is impossible to answer. You cannot determine an algorithm from a given program if the program is not actually given in the question. Please place the program in the discussion section.
1 answer
// returns n!
int fact(int n) {
int f_n = 1;
for(int i = n; i > 1; --i) {
f_n *= n;
}
return f_n;
}
2 answers
// Author : SAGAR T.U, PESIT
#define TRUE 1
#define FALSE 0
int isStrictBinaryTree (struct tree * n)
{
if( n NULL ) return TRUE;
return FALSE;
}
1 answer
transpose(Matrix mat,int rows, int cols ){ //construction step Matrix tmat; for(int i=0;i<rows;i++){ for(int j=0;j<cols;j++){ tmat[j][i] = mat[i][j]; } } }
1 answer
Algorithm to Convert Infix to Prefix Form
Suppose A is an arithmetic expression written in infix form. The algorithm finds equivalent prefix expression B.
Step 1. Push ")" onto STACK, and add "(" to end of the A
Step 2. Scan A from right to left and repeat step 3 to 6 for each element of A until the STACK is empty
Step 3. If an operand is encountered add it to B
Step 4. If a right parenthesis is encountered push it onto STACK
Step 5. If an operator is encountered then:
a. Repeatedly pop from STACK and add to B each operator (on the top of STACK) which has same or higher precedence than the operator.
b. Add operator to STACK
Step 6. If left parenthesis is encontered then
a. Repeatedly pop from the STACK and add to B (each operator on top of stack until a left parenthesis is encounterd)
b. Remove the left parenthesis
Step 7. Exit
3 answers
1. If TOP = MAXSTK THEN [Stack already filled?]
Print "OVERFLOW"
Go to step 4
Endif
2. TOP = TOP + 1 [Increase TOP by 1]
3. Set ST[STOP] = ITEM [Insert ITEM in new TOP position]
4. End
3 answers
1 answer
enter the number whose digits are to be added
num is the given value
num=0!
k=num%10
sum=sum=k
k=num/10
num=k
print the sum of the digits
1 answer
Please use the discussion area to state your question in English.
1 answer
1.start
2.n=1,s=0
3 compute s=s+n
4 compute n=n+1
5 check n<=10 go to step3 else go to step 7
6 display s
7 stop
6 answers
The only way to delete objects in an object oriented programming language (unless they were created in heap memory) is for the object to go out of scope. If the object is declared in the heap, in c++ you would use delete[] ptr; or delete ptr; where ptr is a pointer to your object.
2 answers
You sort a doubly linked list the same way you sort any other kind of list or array.
You implement a procedure to sort the list or array, and that procedure calls the appropriate insert, delete, or move methods of the list or array.
5 answers
Lxi h,xx50
mov a,m
inx h
mov b,m
mvi ,ffh
inr c
sub b
jnc xx08
add b
inx h
mov m,c
inx h
mov m,a
hlt
1 answer
def digits(x):
""" Return amount of digits of x. """
y = math.log10(x)
if y % 1 0:
return int(y)
else:
return int(math.floor(y) + 1)
2 answers
step 1:start
step 2:input the values of a,b,c
step 3:if(a>b&&a>c) max=a
step 4:else if(b>c) max=b
step 5:else max=c
step 6:output:max
step 7:stop
1 answer
I am assuming you mean positive integer in decimal notation.
Here is an algorithm that lists the binary representation backwards, that is
from right to left, least significant digit first.
N is the number decimal number
While N > 0
print N rem 2 // output the remainder
N = N/2 // replace N by n divided by 2
end loop
Example: trace for n = 101
n output
101
50 1
25 0
12 1
6 0
3 0
1 1 -- Last one had 0; 3%2 is 1
0 1
Output would be 1010011 ---- from left to right would be 1100101
Check: 64 + 32 + 0 + 0 + 4 + 1 = 101.
1 answer
factorial using recursion style in c++ is
unsigned int fact(unsigned int a)
{
if (a<=1)
return 1;
else
{
f*=fact(a-1);
return a;
}
}
when using looping structure factorial is
unsigned int fact (unsigned int n)
{
unsigned int i,f=1;
for(i=1;i<=n;i++)
f*=i ;
return f;
}
1 answer
Algorithm
Step1: Read A, B, C
Step2: If A > B is True, then check whether A > C, if yes then A is greatest otherwise C is greatest
Step3: If A > B is False, then check whether B > C, if yes then B is greatest otherwise C is greatest
Following these steps flowchart can be made.
10 answers
The belt-and-braces technique is easy enough:
>
> prefix_to_infix(stream, stack)
> if stack is not empty
> pop a node off the stack
> if this node represents an operator
> write an opening parenthesis to stream
> prefix_to_infix(stream, stack)
> write operator to stream
> prefix_to_infix(stream, stack)
> write a closing parenthesis to stream
> else
> write value to stream
> endif
> endif
> endfunc
1 answer
#include<stdio.h>
#include<conio.h>
int fib(int a);
main()
{
int a;
clrscr();
scanf("%d",&a);
for(int i=0;i<a;i++)
printf("%d\n",fib(i));
}
int fib(int a)
{
if(a==0)
return 0;
if(a==1)
return 1;
else
return (fib(a-1)+fib(a-2));
}
2 answers
To delete an node in a linked list...
1 answer
The hexadecimal notation is base-16, so for small numbers, arrange them right to left as powers of 16 (units 0 to 9 and A through F representing 10, 11, 12, 13, 14, and 15).
Examples: 21 = 15 hex (16+5) and 31 = 1F (16+15)
For larger numbers, see the process at the related link below.
Here is a program:
#include
#include
void main()
{
int n;
clrscr();
printf("Enter Decimal Number: ");
scanf("%d",&n);
printf("Hexadecimal value is: %x",n);
getch();
}
2 answers
What is FIFO algorithm?
1 answer
int linearSearch(int a[], int first, int last, int key) { // function: // Searches a[first]..a[last] for key. // returns: index of the matching element if it finds key, // otherwise -1. // parameters: // a in array of (possibly unsorted) values. // first, last in lower and upper subscript bounds // key in value to search for. // returns: // index of key, or -1 if key is not in the array. for (int i=first; i<=last; i++) { if (key == a[i]) { return i; } } return -1; // failed to find key }
1 answer
Delete Front----
DQDELETE_FRONT(QUEUE, FRONT, REAR, ITEM)
1. [check for queue underflow]
If FRONT<0, Then: Print: "Queue is empty", and Return.
2. ITEM = QUEUE[FRONT];
3. Set FRONT = FRONT + 1.
4. Return.
Delete Rear----
DQDELETE_REAR(QUEUE, REAR, FRONT, ITEM)
1. [check for queue underflow]
If REAR<0, Then: Print: "Queue is empty", and Return.
2. ITEM = QUEUE[REAR].
3. Set REAR = REAR - 1.
4.Return.
1 answer
There are many ways of checking for a complete binary tree. Here is one method:
1. Do a level order traversal of the tree and store the data in an array
2. If you encounter a nullnode, store a special flag value.
3. Keep track of the last non-null node data stored in the array - lastvalue
4. Now after the level order traversal, traverse this array up to the index lastvalue and check whether the flag value is encountered. If yes, then it is not a complete binary tree, otherwise it is a complete binary tree.
1 answer