-
Notifications
You must be signed in to change notification settings - Fork 0
/
pushZerosToLeft-Right.cs
78 lines (58 loc) · 1.47 KB
/
pushZerosToLeft-Right.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
using System;
// To execute C#, please define "static void Main" on a class
// named Solution.
class Solution
{
static void Main(string[] args)
{
int[] arr = new int[10] {1,2,3,4,5,0,0,0,0,0};
//calcavg(arr);
pushZerosToLeft(arr);
}
//avg of n- natural numbers
public static void calcavg(int[] arr)
{
int length = arr.Length;
int lastIndex = length -1;
int n = arr[lastIndex];
double avg = (n + 1.0) / 2;
Console.WriteLine(avg);
}
public static void pushZerosToLeft(int[] arr)
{
int length = arr.Length;
int k =0;
for(int i=0; i<length; i++)
{
if(arr[i] == 0)
{
int temp = arr[i];
arr[i] = arr[k];
arr[k] = temp;
k++;
}
}
for(int i=0; i<length; i++)
{
Console.Write(arr[i] + " ");
}
}
public static void pushZerosToEnd(int[] arr)
{
int length = arr.Length;
int count = 0;
for(int i=0; i<length; i++)
{
if(arr[i] != 0)
{
arr[count] = arr[i];
count++;
}
}
while(count < length)
{
arr[count] = 0;
count++;
}
}
}