mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
code cleanup to prevent gcc warnings
This commit is contained in:
parent
64789aed99
commit
1b826807ed
@ -6,6 +6,7 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
|
#include <arpa/inet.h>
|
||||||
#define MAX 80
|
#define MAX 80
|
||||||
#define PORT 8080
|
#define PORT 8080
|
||||||
#define SA struct sockaddr
|
#define SA struct sockaddr
|
||||||
@ -13,7 +14,8 @@ void func(int sockfd)
|
|||||||
{
|
{
|
||||||
char buff[MAX];
|
char buff[MAX];
|
||||||
int n;
|
int n;
|
||||||
for (;;) {
|
for (;;)
|
||||||
|
{
|
||||||
bzero(buff, sizeof(buff));
|
bzero(buff, sizeof(buff));
|
||||||
printf("Enter the string : ");
|
printf("Enter the string : ");
|
||||||
n = 0;
|
n = 0;
|
||||||
@ -23,7 +25,8 @@ void func(int sockfd)
|
|||||||
bzero(buff, sizeof(buff));
|
bzero(buff, sizeof(buff));
|
||||||
read(sockfd, buff, sizeof(buff));
|
read(sockfd, buff, sizeof(buff));
|
||||||
printf("From Server : %s", buff);
|
printf("From Server : %s", buff);
|
||||||
if ((strncmp(buff, "exit", 4)) == 0) {
|
if ((strncmp(buff, "exit", 4)) == 0)
|
||||||
|
{
|
||||||
printf("Client Exit...\n");
|
printf("Client Exit...\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -37,7 +40,8 @@ int main()
|
|||||||
|
|
||||||
// socket create and varification
|
// socket create and varification
|
||||||
sockfd = socket(AF_INET, SOCK_STREAM, 0);
|
sockfd = socket(AF_INET, SOCK_STREAM, 0);
|
||||||
if (sockfd == -1) {
|
if (sockfd == -1)
|
||||||
|
{
|
||||||
printf("socket creation failed...\n");
|
printf("socket creation failed...\n");
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
@ -51,7 +55,8 @@ int main()
|
|||||||
servaddr.sin_port = htons(PORT);
|
servaddr.sin_port = htons(PORT);
|
||||||
|
|
||||||
// connect the client socket to server socket
|
// connect the client socket to server socket
|
||||||
if (connect(sockfd, (SA*)&servaddr, sizeof(servaddr)) != 0) {
|
if (connect(sockfd, (SA *)&servaddr, sizeof(servaddr)) != 0)
|
||||||
|
{
|
||||||
printf("connection with the server failed...\n");
|
printf("connection with the server failed...\n");
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
@ -5,24 +5,25 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
int decimal_to_octal(int decimal)
|
int decimal_to_octal(int decimal)
|
||||||
{
|
{
|
||||||
if( (decimal<8) && (decimal>0) )
|
if ((decimal < 8) && (decimal > 0))
|
||||||
{
|
{
|
||||||
return decimal;
|
return decimal;
|
||||||
}
|
}
|
||||||
else if(decimal==0)
|
else if (decimal == 0)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return ( (decimal_to_octal(decimal/8)*10) + decimal%8 );
|
return ((decimal_to_octal(decimal / 8) * 10) + decimal % 8);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void main()
|
int main()
|
||||||
{
|
{
|
||||||
int octalNumber,decimalNumber;
|
int octalNumber, decimalNumber;
|
||||||
printf("\nEnter your decimal number : ");
|
printf("\nEnter your decimal number : ");
|
||||||
scanf("%d",&decimalNumber);
|
scanf("%d", &decimalNumber);
|
||||||
octalNumber = decimal_to_octal(decimalNumber);
|
octalNumber = decimal_to_octal(decimalNumber);
|
||||||
printf("\nThe octal of %d is : %d" ,decimalNumber,octalNumber);
|
printf("\nThe octal of %d is : %d", decimalNumber, octalNumber);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -1,54 +1,77 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include<stdlib.h>
|
#include <stdlib.h>
|
||||||
#include<time.h>
|
#include <time.h>
|
||||||
void swap(int *a ,int *b)
|
void swap(int *a, int *b)
|
||||||
{int t;t =*a;*a=*b;*b=t;}
|
{
|
||||||
int part(int a[],int l,int r,int n,int pivot,int pindex)
|
int t;
|
||||||
{int p1=l,p2=r;
|
t = *a;
|
||||||
while(p2>p1)
|
*a = *b;
|
||||||
|
*b = t;
|
||||||
|
}
|
||||||
|
int part(int a[], int l, int r, int n, int pivot, int pindex)
|
||||||
|
{
|
||||||
|
int p1 = l, p2 = r;
|
||||||
|
while (p2 > p1)
|
||||||
{
|
{
|
||||||
if (a[p1] > pivot && a[p2]<pivot)
|
if (a[p1] > pivot && a[p2] < pivot)
|
||||||
{swap(&a[p1],&a[p2]);}
|
{
|
||||||
|
swap(&a[p1], &a[p2]);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (a[p1] <=pivot)
|
if (a[p1] <= pivot)
|
||||||
{p1++;}
|
{
|
||||||
if (a[p2]>=pivot)
|
p1++;
|
||||||
{p2--;}
|
}
|
||||||
|
if (a[p2] >= pivot)
|
||||||
|
{
|
||||||
|
p2--;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
swap(&a[pindex],&a[p2]);
|
swap(&a[pindex], &a[p2]);
|
||||||
return p2;
|
return p2;
|
||||||
}
|
}
|
||||||
int rselect(int a[],int l,int r,int n,int o)
|
int rselect(int a[], int l, int r, int n, int o)
|
||||||
{
|
{
|
||||||
int pivot,pindex,pactual;
|
int pivot, pindex, pactual;
|
||||||
if (r>l)
|
if (r > l)
|
||||||
{
|
{
|
||||||
pindex = rand()%(r-l+1);
|
pindex = rand() % (r - l + 1);
|
||||||
pivot = a[pindex];
|
pivot = a[pindex];
|
||||||
pactual = part(a,l,r,n,pivot,pindex);
|
pactual = part(a, l, r, n, pivot, pindex);
|
||||||
|
|
||||||
if (pactual == o)
|
if (pactual == o)
|
||||||
{return a[pactual];}
|
{
|
||||||
|
return a[pactual];
|
||||||
|
}
|
||||||
|
|
||||||
if (o < pactual)
|
if (o < pactual)
|
||||||
{rselect(a,l,pactual-1,n,o);}
|
{
|
||||||
|
rselect(a, l, pactual - 1, n, o);
|
||||||
|
}
|
||||||
|
|
||||||
if (o>pactual)
|
if (o > pactual)
|
||||||
{rselect(a,pactual+1,r,n,o-pactual);}
|
{
|
||||||
|
rselect(a, pactual + 1, r, n, o - pactual);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (r==l)
|
if (r == l)
|
||||||
{return a[l];}
|
{
|
||||||
|
return a[l];
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
int main()
|
int main()
|
||||||
{srand(time(NULL));
|
{
|
||||||
int n,o,i,*a;
|
srand(time(NULL));
|
||||||
scanf("%d %d",&n,&o);
|
int n, o, i, *a;
|
||||||
a = (int*)malloc(n*sizeof(int));
|
scanf("%d %d", &n, &o);
|
||||||
for (i=0;i<n;i++)
|
a = (int *)malloc(n * sizeof(int));
|
||||||
{scanf("%d",a+i);}
|
for (i = 0; i < n; i++)
|
||||||
printf("\n\n%d",rselect(a,0,n-1,n,o));
|
{
|
||||||
|
scanf("%d", a + i);
|
||||||
|
}
|
||||||
|
printf("\n\n%d", rselect(a, 0, n - 1, n, o));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,34 +5,34 @@
|
|||||||
* factorial of its digit is equal to number itself.
|
* factorial of its digit is equal to number itself.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include<stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
|
||||||
void strng(int a)
|
void strng(int a)
|
||||||
{
|
{
|
||||||
int j=a;
|
int j = a;
|
||||||
int sum=0;
|
int sum = 0;
|
||||||
int b,i,fact=1;
|
int b, i, fact = 1;
|
||||||
while(a>0)
|
while (a > 0)
|
||||||
{
|
{
|
||||||
fact=1;
|
fact = 1;
|
||||||
b=a%10;
|
b = a % 10;
|
||||||
for(i=1;i<=b;i++)
|
for (i = 1; i <= b; i++)
|
||||||
{
|
{
|
||||||
fact=fact*i;
|
fact = fact * i;
|
||||||
}
|
}
|
||||||
a=a/10;
|
a = a / 10;
|
||||||
sum=sum+fact;
|
sum = sum + fact;
|
||||||
}
|
}
|
||||||
if(sum==j)
|
if (sum == j)
|
||||||
printf("%d is a strong number",j);
|
printf("%d is a strong number", j);
|
||||||
else
|
else
|
||||||
printf("%d is not a strong number",j);
|
printf("%d is not a strong number", j);
|
||||||
}
|
}
|
||||||
void main()
|
int main()
|
||||||
{
|
{
|
||||||
int a;
|
int a;
|
||||||
printf("Enter the number to check");
|
printf("Enter the number to check");
|
||||||
scanf("%d",&a);
|
scanf("%d", &a);
|
||||||
strng(a);
|
strng(a);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -6,47 +6,61 @@ e.g. for 10, largest prime factor = 5. For 17, largest prime factor = 17.
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
int isprime(int no) {
|
int isprime(int no)
|
||||||
|
{
|
||||||
int sq;
|
int sq;
|
||||||
|
|
||||||
if (no == 2) {
|
if (no == 2)
|
||||||
|
{
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
else if (no%2 == 0) {
|
else if (no % 2 == 0)
|
||||||
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
sq = ((int)(sqrt(no))) + 1;
|
sq = ((int)(sqrt(no))) + 1;
|
||||||
for (int i = 3; i < sq; i + 2) {
|
for (int i = 3; i < sq; i += 2)
|
||||||
if (no%i == 0) {
|
{
|
||||||
|
if (no % i == 0)
|
||||||
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main() {
|
int main()
|
||||||
|
{
|
||||||
int maxNumber = 0;
|
int maxNumber = 0;
|
||||||
int n = 0;
|
int n = 0;
|
||||||
int n1;
|
int n1;
|
||||||
scanf("%d", &n);
|
scanf("%d", &n);
|
||||||
if (isprime(n) == 1)
|
if (isprime(n) == 1)
|
||||||
printf("%d", n);
|
printf("%d", n);
|
||||||
else {
|
else
|
||||||
while (n % 2 == 0) {
|
{
|
||||||
|
while (n % 2 == 0)
|
||||||
|
{
|
||||||
n = n / 2;
|
n = n / 2;
|
||||||
}
|
}
|
||||||
if (isprime(n) == 1) {
|
if (isprime(n) == 1)
|
||||||
|
{
|
||||||
printf("%d\n", n);
|
printf("%d\n", n);
|
||||||
}
|
}
|
||||||
else {
|
else
|
||||||
|
{
|
||||||
n1 = ((int)(sqrt(n))) + 1;
|
n1 = ((int)(sqrt(n))) + 1;
|
||||||
for (int i = 3; i < n1; i + 2) {
|
for (int i = 3; i < n1; i += 2)
|
||||||
if (n%i == 0) {
|
{
|
||||||
if (isprime((int)(n / i)) == 1) {
|
if (n % i == 0)
|
||||||
|
{
|
||||||
|
if (isprime((int)(n / i)) == 1)
|
||||||
|
{
|
||||||
maxNumber = n / i;
|
maxNumber = n / i;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else if (isprime(i) == 1) {
|
else if (isprime(i) == 1)
|
||||||
|
{
|
||||||
maxNumber = i;
|
maxNumber = i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,28 +1,34 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
unsigned long gcd(unsigned long a, unsigned long b) {
|
unsigned long gcd(unsigned long a, unsigned long b)
|
||||||
|
{
|
||||||
unsigned long r;
|
unsigned long r;
|
||||||
if (a > b) {
|
if (a > b)
|
||||||
|
{
|
||||||
unsigned long t = a;
|
unsigned long t = a;
|
||||||
a = b;
|
a = b;
|
||||||
b = t;
|
b = t;
|
||||||
}
|
}
|
||||||
while (r = a % b) {
|
while ((r = (a % b)))
|
||||||
|
{
|
||||||
a = b;
|
a = b;
|
||||||
b = r;
|
b = r;
|
||||||
}
|
}
|
||||||
return b;
|
return b;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned long lcm(unsigned long a, unsigned long b) {
|
unsigned long lcm(unsigned long a, unsigned long b)
|
||||||
|
{
|
||||||
unsigned long long p = (unsigned long long)a * b;
|
unsigned long long p = (unsigned long long)a * b;
|
||||||
return p / gcd(a, b);
|
return p / gcd(a, b);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(void) {
|
int main(void)
|
||||||
|
{
|
||||||
unsigned long ans = 1;
|
unsigned long ans = 1;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
for (i = 1; i <= 20; i++) {
|
for (i = 1; i <= 20; i++)
|
||||||
|
{
|
||||||
ans = lcm(ans, i);
|
ans = lcm(ans, i);
|
||||||
}
|
}
|
||||||
printf("%lu\n", ans);
|
printf("%lu\n", ans);
|
||||||
|
@ -2,10 +2,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#ifdef _OPENMP
|
#ifdef _OPENMP
|
||||||
#include <omp.h>
|
#include <omp.h>
|
||||||
#pragma message ("Using OpenMP parallelization")
|
|
||||||
#else
|
|
||||||
#pragma message ("Not using OpenMP parallelization")
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -16,13 +13,13 @@ long long collatz(long long start_num)
|
|||||||
{
|
{
|
||||||
long long length = 1;
|
long long length = 1;
|
||||||
|
|
||||||
while (start_num != 1) /* loop till we reach 1 */
|
while (start_num != 1) /* loop till we reach 1 */
|
||||||
{
|
{
|
||||||
if(start_num & 0x01) /* check for odd */
|
if (start_num & 0x01) /* check for odd */
|
||||||
start_num = 3 * start_num + 1;
|
start_num = 3 * start_num + 1;
|
||||||
else
|
else
|
||||||
start_num >>= 1; /* simpler divide by 2 */
|
start_num >>= 1; /* simpler divide by 2 */
|
||||||
length ++;
|
length++;
|
||||||
}
|
}
|
||||||
|
|
||||||
return length;
|
return length;
|
||||||
@ -33,13 +30,13 @@ int main(int argc, char **argv)
|
|||||||
long long max_len = 0, max_len_num = 0;
|
long long max_len = 0, max_len_num = 0;
|
||||||
long long MAX_NUM = 1000000;
|
long long MAX_NUM = 1000000;
|
||||||
|
|
||||||
if (argc == 2) /* set commandline argumnet as the maximum iteration number */
|
if (argc == 2) /* set commandline argumnet as the maximum iteration number */
|
||||||
{
|
{
|
||||||
MAX_NUM = atoll(argv[1]);
|
MAX_NUM = atoll(argv[1]);
|
||||||
printf("Maximum number: %lld\n", MAX_NUM);
|
printf("Maximum number: %lld\n", MAX_NUM);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Since the computational values for each iteration step are independent,
|
* Since the computational values for each iteration step are independent,
|
||||||
* we can compute them in parallel. However, the maximum values should be
|
* we can compute them in parallel. However, the maximum values should be
|
||||||
* updated in synchrony so that we do not get into a "race condition".
|
* updated in synchrony so that we do not get into a "race condition".
|
||||||
@ -49,23 +46,23 @@ int main(int argc, char **argv)
|
|||||||
*
|
*
|
||||||
* Automatically detects for OPENMP using the _OPENMP macro.
|
* Automatically detects for OPENMP using the _OPENMP macro.
|
||||||
**/
|
**/
|
||||||
#ifdef _OPENMP
|
#ifdef _OPENMP
|
||||||
#pragma omp parallel for shared(max_len, max_len_num) schedule(guided)
|
#pragma omp parallel for shared(max_len, max_len_num) schedule(guided)
|
||||||
#endif
|
#endif
|
||||||
for (long long i = 1; i < MAX_NUM; i++)
|
for (long long i = 1; i < MAX_NUM; i++)
|
||||||
{
|
{
|
||||||
long long L = collatz(i);
|
long long L = collatz(i);
|
||||||
if (L > max_len)
|
if (L > max_len)
|
||||||
{
|
{
|
||||||
max_len = L; /* length of sequence */
|
max_len = L; /* length of sequence */
|
||||||
max_len_num = i; /* starting number */
|
max_len_num = i; /* starting number */
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(_OPENMP) && defined(DEBUG)
|
#if defined(_OPENMP) && defined(DEBUG)
|
||||||
printf("Thread: %2d\t %3lld: \t%5lld\n", omp_get_thread_num(), i, L);
|
printf("Thread: %2d\t %3lld: \t%5lld\n", omp_get_thread_num(), i, L);
|
||||||
#elif defined(DEBUG)
|
#elif defined(DEBUG)
|
||||||
printf("%3lld: \t%5lld\n", i, L);
|
printf("%3lld: \t%5lld\n", i, L);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Start: %3lld: \tLength: %5lld\n", max_len_num, max_len);
|
printf("Start: %3lld: \tLength: %5lld\n", max_len_num, max_len);
|
||||||
|
@ -1,27 +1,32 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
int linearsearch(int *arr, int size, int val){
|
int linearsearch(int *arr, int size, int val)
|
||||||
|
{
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < size; i++){
|
for (i = 0; i < size; i++)
|
||||||
|
{
|
||||||
if (arr[i] == val)
|
if (arr[i] == val)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void main(){
|
int main()
|
||||||
int n,i,v;
|
{
|
||||||
|
int n, i, v;
|
||||||
printf("Enter the size of the array:\n");
|
printf("Enter the size of the array:\n");
|
||||||
scanf("%d",&n); //Taking input for the size of Array
|
scanf("%d", &n); //Taking input for the size of Array
|
||||||
|
|
||||||
int a[n];
|
int a[n];
|
||||||
printf("Enter the contents for an array of size %d:\n", n);
|
printf("Enter the contents for an array of size %d:\n", n);
|
||||||
for (i = 0; i < n; i++) scanf("%d", &a[i]);// accepts the values of array elements until the loop terminates//
|
for (i = 0; i < n; i++)
|
||||||
|
scanf("%d", &a[i]); // accepts the values of array elements until the loop terminates//
|
||||||
|
|
||||||
printf("Enter the value to be searched:\n");
|
printf("Enter the value to be searched:\n");
|
||||||
scanf("%d", &v); //Taking input the value to be searched
|
scanf("%d", &v); //Taking input the value to be searched
|
||||||
if (linearsearch(a,n,v))
|
if (linearsearch(a, n, v))
|
||||||
printf("Value %d is in the array.\n", v);
|
printf("Value %d is in the array.\n", v);
|
||||||
else
|
else
|
||||||
printf("Value %d is not in the array.\n", v);
|
printf("Value %d is not in the array.\n", v);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#define len 5
|
#define len 5
|
||||||
|
|
||||||
|
|
||||||
int binarySearch(int array[], int leng, int searchX)
|
int binarySearch(int array[], int leng, int searchX)
|
||||||
{
|
{
|
||||||
int pos = -1, right, left, i = 0;
|
int pos = -1, right, left, i = 0;
|
||||||
@ -10,14 +9,14 @@ int binarySearch(int array[], int leng, int searchX)
|
|||||||
left = 0;
|
left = 0;
|
||||||
right = leng - 1;
|
right = leng - 1;
|
||||||
|
|
||||||
while(left <= right)
|
while (left <= right)
|
||||||
{
|
{
|
||||||
pos = left + (right - left) / 2;
|
pos = left + (right - left) / 2;
|
||||||
if(array[pos] == searchX)
|
if (array[pos] == searchX)
|
||||||
{
|
{
|
||||||
return pos;
|
return pos;
|
||||||
}
|
}
|
||||||
else if(array[pos] > searchX)
|
else if (array[pos] > searchX)
|
||||||
{
|
{
|
||||||
right = pos - 1;
|
right = pos - 1;
|
||||||
}
|
}
|
||||||
@ -29,10 +28,9 @@ int binarySearch(int array[], int leng, int searchX)
|
|||||||
return -1; /* not found */
|
return -1; /* not found */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
void main(int argc, char *argv[])
|
|
||||||
{
|
{
|
||||||
int array[len] = { 5, 8 , 10 , 14 ,16 };
|
int array[len] = {5, 8, 10, 14, 16};
|
||||||
|
|
||||||
int position;
|
int position;
|
||||||
position = binarySearch(array, len, 5);
|
position = binarySearch(array, len, 5);
|
||||||
@ -44,5 +42,5 @@ void main(int argc, char *argv[])
|
|||||||
printf("The number %d exist in array at position : %d \n", 5, position);
|
printf("The number %d exist in array at position : %d \n", 5, position);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -1,24 +1,24 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
void stoogesort(int [], int, int);
|
void stoogesort(int[], int, int);
|
||||||
|
|
||||||
void main()
|
int main()
|
||||||
{
|
{
|
||||||
int arr[100], i, n;
|
int arr[100], i, n;
|
||||||
|
|
||||||
printf("How many elements do you want to sort: ");
|
printf("How many elements do you want to sort: ");
|
||||||
scanf("%d", &n);
|
scanf("%d", &n);
|
||||||
for (i = 0;i < n; i++)
|
for (i = 0; i < n; i++)
|
||||||
scanf(" %d", &arr[i]);
|
scanf(" %d", &arr[i]);
|
||||||
stoogesort(arr, 0, n - 1);
|
stoogesort(arr, 0, n - 1);
|
||||||
printf("Sorted array : \n");
|
printf("Sorted array : \n");
|
||||||
for (i = 0;i < n;i++)
|
for (i = 0; i < n; i++)
|
||||||
{
|
{
|
||||||
printf("%d ", arr[i]);
|
printf("%d ", arr[i]);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void stoogesort(int arr[], int i, int j)
|
void stoogesort(int arr[], int i, int j)
|
||||||
{
|
{
|
||||||
int temp, k;
|
int temp, k;
|
||||||
|
@ -259,7 +259,7 @@ void insert2(char *s)
|
|||||||
|
|
||||||
Tptr pp, *p;
|
Tptr pp, *p;
|
||||||
p = &root;
|
p = &root;
|
||||||
while (pp = *p)
|
while (pp == *p)
|
||||||
{
|
{
|
||||||
if ((d = *s - pp->splitchar) == 0)
|
if ((d = *s - pp->splitchar) == 0)
|
||||||
{
|
{
|
||||||
@ -390,7 +390,6 @@ void nearsearch(Tptr p, char *s, int d)
|
|||||||
nearsearch(p->hikid, s, d);
|
nearsearch(p->hikid, s, d);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#define NUMBER_OF_STRING 3
|
#define NUMBER_OF_STRING 3
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
|
Loading…
Reference in New Issue
Block a user