#include <stdio.h>
#include <math.h>
#include <conio.h>
int array [2000000];
void merge(int* input, int p, int r)
{
int mid = (int)floor((p + r) / 2);
int i1 = 0;
int i2 = p;
int i3 = mid + 1;
int temp[r-p+1];
while ( i2 <= mid && i3 <= r )
if ( input[i2] < input[i3] )
temp[i1++] = input ...
Search found 3 matches
- Wed Apr 25, 2012 5:10 pm
- Forum: Volume 114 (11400-11499)
- Topic: 11462 - Age Sort
- Replies: 49
- Views: 28065
- Wed Apr 25, 2012 5:04 pm
- Forum: Volume 105 (10500-10599)
- Topic: 10523 - Very Easy !!!
- Replies: 63
- Views: 32504
Re: Error in 10523
thank you
- Thu Apr 19, 2012 6:52 pm
- Forum: Volume 105 (10500-10599)
- Topic: 10523 - Very Easy !!!
- Replies: 63
- Views: 32504
Error in 10523
can any one help me ?
why the following compilation error is shown ?
Main.java:5: class MAINN is public, should be declared in a file named MAINN.java
public class MAINN {
^
1 error
why the following compilation error is shown ?
Main.java:5: class MAINN is public, should be declared in a file named MAINN.java
public class MAINN {
^
1 error