Follow

Translate

Saturday, April 30, 2016

Procedure P2.9A : CROSSOUT(A, N, K)

1.  If A[K] = 1, then : Return.

2.  Repeat for L = 2K to N by K:

Set A[L] : 1.

[End of loop]

3. Return.
If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :CSE SOLVE

Related Posts:

  • Traversing in a Linear Array /* Traversing in a Linear Array  */ #include<stdio.h>         /* Header File that are called standard input output*/ #include<conio.h>     &n… Read More
  • /* Another Methods of Traversing in a Linear Array  */ #include<stdio.h>         /* Header File that are called standard input output*/ #include<conio.h>  … Read More
  • 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 use… Read More
  • Procedure P2.9A : CROSSOUT(A, N, K) 1.  If A[K] = 1, then : Return. 2.  Repeat for L = 2K to N by K: Set A[L] : 1. [End of loop] 3. Return. If You want to learn about the technology, computer science & engineering, web programming, freelanci… Read More
  • Program to convert an Expression from Infix to Postfix #include<stdio.h> #include<stdlib.h> #define MAXCOLS 80 #define TRUE 1 #define FALSE 0 void postfix(char*, char *); int isoperand(char); void popandtest(struct stack*, char*, int*); int prcd(char, char); void p… Read More

0 comments:

Post a Comment