ในบทความนี้ เราจะเข้าใจวิธีการย้อนกลับสตริง สตริงเป็นประเภทข้อมูลที่มีอักขระตั้งแต่หนึ่งตัวขึ้นไปและอยู่ในเครื่องหมายคำพูดคู่ (“ ”) สตริงย้อนกลับกำลังแสดงสตริงย้อนกลับหรือจากขวาไปซ้าย
ด้านล่างนี้เป็นการสาธิตสิ่งเดียวกัน -
สมมติว่าข้อมูลที่เราป้อนคือ −
The string is defined as: Java Program
ผลลัพธ์ที่ต้องการจะเป็น −
The reversed string is: margorP avaJ
อัลกอริทึม
Step 1 - START Step 2 - Declare two string values namely input_string and reverse_string, and a char value namely temp. Step 3 - Define the values. Step 4 - Iterating using a for-loop, assign the i’th character to temp and later assign the ‘temp + reverse_string’ to reverse_string value. I.e adding the first element of the string to the last position of the reverse_string. Store the value. Step 5 - Display the result Step 6 - Stop
ตัวอย่างที่ 1
ที่นี่ เราเชื่อมโยงการดำเนินการทั้งหมดเข้าด้วยกันภายใต้ฟังก์ชัน 'หลัก'
public class ReverseString { public static void main (String[] args) { String input_string= "Java Program", reverse_string=""; char temp; System.out.println("The string is defined as: " + input_string); for (int i=0; i<input_string.length(); i++) { temp= input_string.charAt(i); reverse_string= temp+reverse_string; } System.out.println("\nThe reversed string is: "+ reverse_string); } }
ผลลัพธ์
The string is defined as: Java Program The reversed string is: margorP avaJ
ตัวอย่างที่ 2
ในที่นี้ เราสรุปการดำเนินการเป็นฟังก์ชันที่แสดงการเขียนโปรแกรมเชิงวัตถุ
public class ReverseString { static void reverse(String input_string){ String reverse_string = ""; char temp; for (int i=0; i<input_string.length(); i++) { temp= input_string.charAt(i); reverse_string= temp+reverse_string; } System.out.println("\nThe reversed string is: "+ reverse_string); } public static void main (String[] args) { String input_string= "Java Program"; System.out.println("The string is defined as: " + input_string); reverse(input_string); } }
ผลลัพธ์
The string is defined as: Java Program The reversed string is: margorP avaJ