berechnen Was wird Zeit Komplexität des folgenden Algorithmus sein? Kann jemand helfenWie Zeitkomplexität in der großen O-Notation für folgende Array-Doppel-Lookup
public class Util
{
public static int GetDistance(int[] array)
{
//Find the max seperation of two same numbers inside an array for example
// {1,2,4,1,5,9,0,4,15,1,2} should return 9 (position of '1' at 9th and 0th location)
int N = array.Length;
int maxDistance=0;
for (int i = 0; i < N; i++)
{
for (int j = (N-1); j > i; j--)
{
if (array[j]==array[i])
if(maxDistance < (j-i))
maxDistance = j- i;
}//End of inner for
}//End of for
System.Console.WriteLine("maxDistance " + maxDistance);
return maxDistance ;
} //End of Function
} //End of Class
es, dass die Zeit Komplexität Darstellung von O bedeutet (N²) ist gleich wie O ((N²-N)/2) & delta; Dann – Ash
Natürlich. Für große N ist N im Vergleich zu N² vernachlässigbar. –