• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            SmartPtr
            本博客已搬至:http://www.cnblogs.com/baiyanhuang/
            posts - 29,comments - 176,trackbacks - 0

            By SmartPtr(http://www.shnenglu.com/SmartPtr/)

              從0~13中任取出7個數,然后判斷這7個數中是否存在連續的5個數, 規則如下:
            1) 7個數可以是重復的數.
            2) 0可以表示任意數
            例子如下:
            0, 1, 4, 3, 8, 0, 13--->true: 1-2-3-4-5
            0, 1, 1, 1, 9, 10, 0--->false
            0, 1, 3, 9, 10, 11, 12->true: 9-10-11-12-13
            0, 0, 0, 0, 0, 0, 0->true: 0-1-2-3-4

            這是最近看到的一個算法題, 粗粗一看,覺得很簡單, 可是慢慢往里面想,覺得要考慮的還是挺多的?,F在把它實現出來放在這里,當然,加了幾個參數使其更加通用。希望對大家有些參考價值。寫的不明白的地方,有錯誤的地方大家可以指出來;大家如果有好的思路的話也希望能寫下來共享一下。以下是代碼與注釋:


             

            #include <stdio.h>
            #include 
            <iostream>
            using namespace std;

            /*
            從0~13中任取出7個數,然后判斷這7個數中是否存在連續的5個數, 規則如下:
            1) 7個數可以是重復的數.
            2) 0可以表示任意數
            例子如下:
            0, 1, 4, 3, 8, 0, 13--->true: 1-2-3-4-5
            0, 1, 1, 1, 9, 10, 0--->false
            0, 1, 3, 9, 10, 11, 12->true: 9-10-11-12-13 
            0, 0, 0, 0, 0, 0, 0->true: 0-1-2-3-4
            */


            // Helper functions
            void outputarray(int a[], int n)
            {
                
            for(int i = 0; i < n; ++i) cout<<a[i]<<" ";
                cout
            <<endl;
            }

            void outputresult(int nstart, int m)
            {
                cout
            <<"Continuous Array:";
                
            while(m--)    cout<<nstart++<<" ";
                cout
            <<endl;
            }

            // Return if the n elements array contains m continuous numbers, the elements must large than 0
            // this is a common implementation
            bool Is_n_Contains_m_ContinuousNum(int a[], int n, int m) 
            {
                
            // step 1: get num of 0
                int nZeroNum = 0;
                
            for(int i = 0; i < n; ++i)
                    
            if(0 == a[i]) ++nZeroNum;

                cout
            <<"Original Array:  "; outputarray(a, n);

                
            // step 2: if we have enough 0, get continuous num is easy.
                if(nZeroNum >= m-1)
                {
                    
            int min = a[0];
                    
            for(int i = 1; i < n; ++i)
                        
            if(a[i] < min || 0 == min) min = a[i];
                    outputresult(min, m);
                    
            return true;
                }
                
            // not enough zero, we need to refine the judgement
                else
                {
                    
            // step 2.1: sort the array. (bubble sort, ascending)
                    bool bIsDone = false;
                    
            for(int i = n-1; i >= 0 && !bIsDone; --i)
                    {
                        bIsDone 
            = true;
                        
            for(int j = 0; j < i; ++j)
                        {
                            
            if(a[j+1< a[j])
                            {
                                bIsDone 
            = false;
                                
            int tmp = a[j+1];
                                a[j
            +1= a[j];
                                a[j] 
            = tmp;
                            }
                        }
                    }

                    cout
            <<"Sorted Array:    "; outputarray(a, n);

                    
            // step 2.2: remove redundant num except 0
                    int aa[256];
                    aa[
            0= a[0];
                    
            int j = 1;
                    
            for(int i = 0; i < n-1++i)
                    {
                        
            if(a[i+1!= a[i] || 0 == a[i+1])
                            aa[j
            ++= a[i+1];
                    }
                    memcpy(a, aa, j 
            * sizeof(aa[0]));
                    n 
            = j;
                    
            if(n < m) return false;

                    cout
            <<"Unique Array:    "; outputarray(a, n);


                    
            // step 2.3: get index of first non-zero element
                    int nIndex = 0;
                    
            for(int i = 0; i < n; ++i)
                    {
                        
            if(a[i] != 0
                        {
                            nIndex 
            = i;
                            
            break;
                        }
                    }

                    
            // step 2.4: refined judgement
                    
            // if n = 7; m = 5; nZeroNum = 2;
                    
            // if we can get continious number without zero or only with 1 zero, then with 2 zero is ok too.
                    
            // so if we got x zeros, we need to check if can success with (0 ~ x-1) zeros
                    for(int k = 0; k <= nZeroNum; ++k)
                    {
                        
            int nInterval = m - k - 1;
                        
            for(int i = nIndex; i < n-nInterval; ++i)
                        {
                            
            // when k = nZeroNum = 2;
                            
            // if the a[i+nInterval] - a[i] ranged in (nInterval, m-1), then it is continuous)
                            
            // means a[i+2] - a[i] ranged in (2, 4), for example:
                            
            // 1 3 5;  1 2 3; 1 2 4;
                            if(a[i+nInterval] - a[i] <= m-1 && a[i+nInterval] - a[i] >= nInterval)
                            {
                                outputresult(a[i], m);
                                
            return true;
                            }
                        }
                    }
                }

                
            return false;
            }


            int main(int argc, char *argv[])
            {
                
            int a[] = {0000000};
                
            if(!Is_n_Contains_m_ContinuousNum(a, sizeof(a)/sizeof(a[0]),5))
                    cout
            <<"Continuous Array:Not Found ";
                
            return 0;

             



            PS:網友建議

            fflush:不需要這么復雜吧,題目說明了是從0~13中任取出7個數,那么建立一個int A[13],記錄哪些數有哪些數沒有(有的話置A[i]為1,否則是0),然后檢測A中連續的5個位置的情況就可以了

            SmartPtr:fflush的思路對我很有啟發, 但我們還要考慮多個0的情況, 按著這個思路的話我覺得可以這么做:針對0~13建立一個數組A[14], A[0], A[1]...分別對應0, 1...的個數。然后依次檢測A中連續的5個位置, 如果其0的個數小于A[0],那么就存在連續的數。(當然還有一些邊緣情況要處理)。

            這個算法我覺得十分有效, 通過引入一個數組大大的簡化了問題。但是有個缺點就是如果要判斷任意范圍內的5個連續數就不容易了。如:
            0, 1, 122, 678, 10000, 3, 6

            posted on 2007-08-26 20:49 SmartPtr 閱讀(1107) 評論(0)  編輯 收藏 引用
            国产成人久久精品一区二区三区 | 日本强好片久久久久久AAA| 久久这里只精品99re66| 久久精品国产亚洲AV嫖农村妇女| 久久久久亚洲国产| 精品国产乱码久久久久软件| 久久99国产精品尤物| 国产精品久久久久久久午夜片| 性做久久久久久久久浪潮| 久久婷婷五月综合97色一本一本 | 国产一区二区三精品久久久无广告 | 麻豆AV一区二区三区久久| 26uuu久久五月天| 久久人人爽人人爽人人片av麻烦 | 午夜精品久久久久久久无码| 中文字幕乱码久久午夜| 久久精品一本到99热免费| 久久综合给合综合久久| AV无码久久久久不卡蜜桃| 亚洲国产高清精品线久久| 国产高潮国产高潮久久久91 | 伊人色综合久久天天网| 99久久精品国产综合一区| 99久久婷婷免费国产综合精品| 久久久久免费精品国产| 四虎国产精品成人免费久久| 久久99亚洲综合精品首页| 久久不射电影网| 久久66热人妻偷产精品9| 久久精品国产精品亚洲毛片| 国产成人精品三上悠亚久久| 人妻少妇精品久久| 久久精品无码免费不卡| 久久久久久久国产免费看| 久久九九免费高清视频| 久久久久亚洲精品无码网址| 人人狠狠综合88综合久久| 伊人伊成久久人综合网777| 偷窥少妇久久久久久久久| 亚洲香蕉网久久综合影视 | 理论片午午伦夜理片久久 |