하나의 그룹의 인접수의 최대 합을 구하고 시작 번호와 끝 번호를 얻습니다 (오리지널)

2317 단어
코드는 다음과 같습니다.
 
        static void GetMax()
        {
            int[] items = new int[] { 31, -41, 59, 26, -53, 58, 97, -93, -23, 84 };

            //int[] items = new int[] { 31, -41, -59, -26};

            //int[] items = new int[] { -10,20,-5};

            int beginIndex = 0;
            int? maxTotal = null;
            int endIndex = 0;

            int itemsLength = items.Length;
            if (itemsLength == 1)
            {
                //      
                maxTotal = items[0];
                beginIndex = 1;
                endIndex = 1;
            }
            else if (itemsLength == 2)
            {
                //      
                if (items[0] > items[1])
                {
                    maxTotal = items[0];
                    beginIndex = 1;
                    endIndex = 1;
                }
                else
                {
                    maxTotal = items[1];
                    beginIndex = 2;
                    endIndex = 2;
                }
                if ((items[0] + items[1]) > maxTotal)
                {
                    maxTotal = items[0] + items[1];
                    beginIndex = 1;
                    endIndex = 2;
                }
            }
            else
            {
                for (int i = 0; i < itemsLength; i++)
                {
                    for (int j = i + 1; j < itemsLength; j++)
                    {
                        int tempMax = items[i];
                        for (int k = (i + 1); k <= j; k++)
                        {
                            tempMax += items[k];
                        }
                        if (!maxTotal.HasValue || tempMax > maxTotal)
                        {
                            beginIndex = i + 1;
                            endIndex = j + 1;
                            maxTotal = tempMax;
                        }
                    }
                }
            }
            Console.WriteLine("   :" + maxTotal);
            Console.WriteLine("     :" + beginIndex);
            Console.WriteLine("     :" + endIndex);
            Console.ReadKey();
        }

 
업데이트 대기...
전재 대상:https://www.cnblogs.com/Music/archive/2010/08/14/1799730.html

좋은 웹페이지 즐겨찾기