hjh132's Blog
          If a thing is worth doing it is worth doing well.
          posts - 20,comments - 9,trackbacks - 0
          public static void permute (char [] str, int low, int high)
              
          {
                  
          if (low > high)
                  
          {
                      System.out.print(str);
                      System.out.print(
          " ");
                  }

                  
          else
                  
          {
                      
          for (int i = low; i <= high; i++)
                      
          {
                          
          char[] temp = str.clone(); //temp will be str
                          temp[i] = str[low]; //with i and low
                          temp[low] = str[i]; //swapped
                          permute(temp,low+1,high);
                      }

                  }

              }

          posted on 2008-02-22 10:26 101℃太陽 閱讀(382) 評論(0)  編輯  收藏 所屬分類: 代碼民工

          只有注冊用戶登錄后才能發表評論。


          網站導航:
           
          主站蜘蛛池模板: 岳池县| 莱州市| 宜春市| 陕西省| 平顶山市| 济阳县| 丽水市| 琼中| 邵阳县| 浮山县| 汾阳市| 长寿区| 白水县| 五峰| 诸暨市| 安福县| 平陆县| 梧州市| 惠来县| 柏乡县| 扎赉特旗| 滨州市| 田林县| 西华县| 佛冈县| 临颍县| 扎赉特旗| 华宁县| 准格尔旗| 土默特左旗| 贞丰县| 德阳市| 隆德县| 衡阳市| 曲沃县| 博兴县| 阳城县| 达日县| 兴安盟| 额尔古纳市| 大姚县|