write a c programme

H

holla

Write the following functions that can be called by a C program:

Write a function to populate an array with random integers between 0
and 99. Use the following functions of which the prototypes are to be
found in stdlib.h
· randomize() - use once to initialize the randomization process
· rand() - generates a random number between 0 and the maximum value
for an integer. You can scale the values down by means of the modulus.

Write a function to remove duplicates from an array of integers.

Write a function to sort an array in ascending order .The following is
a simple sorting algorithm
.. int arr[n];
int i, j, n, temp;

/* populate the array*/

for (i = 0; i < n-1; i++)
for (j = i+1; j < n; j++)
if (arr > arr[j]) {
temp = arr;
arr = arr[j];
arr[j] = temp;
}

Write a function that will merge the contents of two sorted (ascending
order) arrays of type integer values, storing the results in an array
output parameter (still in ascending order). The function should not
assume that both its input parameter arrays are the same length, but
can assume that one array does not contain two copies of the same
value. The result array should also contain no duplicate values.
Write a function to execute a binary search algorithm to search for a
value in an array. Use the following algorithm

int arr[n];
int low = 0, high = n, mid, value;

while (low < high) {
mid = (low + high) / 2;
if (arr[mid] < value)
low = mid + 1;
else
high = mid;
}

low will now be the index where value can be found.
 
T

Thomas Fritsch

holla said:
Write the following functions that can be called by a C program:

Write a function to populate an array with random integers between 0
and 99. Use the following functions of which the prototypes are to be
found in stdlib.h
You have posted to the wrong newsgroup (Java instead of C),
or you are attending the wrong course (C instead of Java).
 
J

Joshua Cranmer

holla said:
Write the following functions that can be called by a C program:

Write a function to populate an array with random integers between 0
and 99. Use the following functions of which the prototypes are to be
found in stdlib.h
· randomize() - use once to initialize the randomization process
· rand() - generates a random number between 0 and the maximum value
for an integer. You can scale the values down by means of the modulus.

Write a function to remove duplicates from an array of integers.

Write a function to sort an array in ascending order .The following is
a simple sorting algorithm
. int arr[n];
int i, j, n, temp;

/* populate the array*/

for (i = 0; i < n-1; i++)
for (j = i+1; j < n; j++)
if (arr > arr[j]) {
temp = arr;
arr = arr[j];
arr[j] = temp;
}

Write a function that will merge the contents of two sorted (ascending
order) arrays of type integer values, storing the results in an array
output parameter (still in ascending order). The function should not
assume that both its input parameter arrays are the same length, but
can assume that one array does not contain two copies of the same
value. The result array should also contain no duplicate values.
Write a function to execute a binary search algorithm to search for a
value in an array. Use the following algorithm

int arr[n];
int low = 0, high = n, mid, value;

while (low < high) {
mid = (low + high) / 2;
if (arr[mid] < value)
low = mid + 1;
else
high = mid;
}

low will now be the index where value can be found.


This belongs in comp.lang.c.

This also looks suspiciously like a homework question...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,535
Members
45,008
Latest member
obedient dusk

Latest Threads

Top