1

宿題があり、配列リストを建設的および破壊的に反転させ、リストの長さを変えて時間を計る必要があります。Arraylist は実行するたびに更新されますが、タイミングの値を取得できず、エラーを見つけることができないため、これらのメソッドに登録されていないようです。

これまでの私のコードは次のとおりです。

public ArrayList ConstructiveReverseDeveloped()
    {            
        ArrayList Temp = new ArrayList();
        for (int i = Developed.Count - 1; i >= 0; i--)
        {
            Apps cur = (Apps)Developed[i];
            Temp.Add(cur);
        }
        return Temp;
    }
    public void TimingConstructive()
    {
        DateTime startTime;
        TimeSpan endTime;
        startTime = DateTime.Now;
        ConstructiveReverseDeveloped();
        endTime = DateTime.Now.Subtract(startTime);
        Console.WriteLine("---------------------------------------------------------");
        Console.WriteLine("Time taken for Constructive Reverse of Developed : {0}", endTime);
    }

public void DestructiveReverseDeveloped()
    {
        //ArrayList x = cloneDeveloped();
        for (int i = Developed.Count - 1; i >= 0; i--)
        {
            Apps cur = (Apps)Developed[i];
            Developed.RemoveAt(i);
            Developed.Add(cur);
        }
    }
    public void TimingDestructive()
    {
        DateTime startTime;
        TimeSpan endTime;
        startTime = DateTime.Now;
        DestructiveReverseDeveloped();
        endTime = DateTime.Now.Subtract(startTime);
        Console.WriteLine("Time taken for Destructive Reverse of Developed : {0}",endTime.ToString());
        Console.WriteLine("---------------------------------------------------------");
    }

タイミング値が得られない理由について、正しい方向に向けてください。私は正確な答えを望んでいませんが、理解を助けるだけです。

ありがとう

4

2 に答える 2

1

DateTime.Substract からの DateTime は必要ありません。代わりに TimeSpan (DateTime.Now-startTime) を取得して出力します。この種の操作は非常に迅速であるため、代わりに合計ミリ秒を出力することをお勧めします。

于 2013-04-11T04:37:04.747 に答える
1

むしろタイマークラスが必要です。タイミング メソッドでは、ガベージ コレクションとファイナライザーのメソッドが考慮されていません。

ここに例があります

class Timer
{
    private DateTime startingTime;
    // stores starting time of code being tested
    private TimeSpan duration;
    // stores duration of code being tested
    public void startTime()
    {
        GC.Collect();   // force garbage collection
        GC.WaitForPendingFinalizers();
        /* wait until all heap contents finalizer methods have completed for removal of contents to be permanent */
        startingTime = DateTime.Now;
        // get current date/time
    }
    public void stopTime()
    {
        // .Subtract: TimeSpan subtraction
        duration = DateTime.Now.Subtract(startingTime);
    }

    public TimeSpan result()
    {
        return duration;
    }


}

あなたのコードは次のようになります

public void TimingDestructive()
{
    Timer Time = new Timer();
    Time.startTime();
    DestructiveReverseDeveloped();
    Time.stopTime();
    Console.WriteLine("Time taken for Destructive Reverse of Developed : {0}ms",Time.result().TotalMilliseconds);
    Console.WriteLine("---------------------------------------------------------");

また、反転メソッドを実行する前にリストを複製するべきではありませんか? それらを複製する予定がある場合は、タイマーと反転メソッドを開始する直前に複製してください。

于 2013-04-12T14:18:27.770 に答える