遞迴方法判斷迴文

來源:互聯網
上載者:User

標籤:輸入   static   stat   ret   rem   img   字元數組   image   第一個   

(1)  使用遞迴方式判斷某個字串是否是迴文( palindrome );

迴文”是指正著讀、反著讀都一樣的句子。比如“我是誰是我”

使用遞迴演算法檢測迴文的演算法描述如下:

A single or zero-character string is a palindrome.

Any other string is a palindrome if the first and last characters are the same, and the string that remains, excepting those characters, is a palindrome.

 1 package 遞迴迴文; 2 import java.util.*; 3 public class Huiwen{ 4     static Scanner  x=new Scanner(System.in); 5     static char strs[] = new char[1000]; 6     static int j=0; 7     public static void main(String[] args) { 8         String s = x.next();//從鍵盤輸入 9         for(int i=0;i<s.length();i++) {//轉化為字元數組10         strs[j] = s.charAt(i);11         j++;12         }13         boolean huiwen = isHuiwen(strs, 0, j-1,j);14         System.out.println(huiwen);15     }16     public static boolean isHuiwen(char a[],int low,int high,int length){17         if(length == 1 || length == 0)18             return true;//字元個數為1,必為迴文19         if (a[low] != a[high] || low >= high) {//第一個字元與最後一個字元比較20             return false;21         }22         return isHuiwen(a, low + 1, high -1,length -2);//遞迴23     }24 }

運行:

 

遞迴方法判斷迴文

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.