Reverse 用於從後到前反轉字串或數字,就像字串 educba 一樣,反轉字串是 abcude。對於數字 9436 反轉為 6349。借助反轉字串,我們可以反轉任何字串。我們可以透過多種方式來實現這個方法。每個方法都有它的log(n)。有些方法比其他方法更快。
有些方法使用更多行程式碼並且本質上很複雜,有時很難理解。我們還可以反轉數字。
方法
這裡有一些方法,透過使用它們我們可以反轉字串:
所以我們可以根據需要使用上述任何一種方法。
下面給出了 C# 中反向字串的範例:
代碼:
using System ; using System.Collections.Generic ; using System.Linq ; using System.Text ; using System.Threading.Tasks ; namespace ReverseString { class Program { static void Main(string[] args) { string Str, rev; Str = "Programming" ; rev = ""; Console.WriteLine("Value of given String is: {0}", Str) ; // find string length int a; a = Str.Length - 1 ; while (a >= 0) { rev = rev + Str[a] ; a--; } Console.WriteLine("Reversed string is: {0}", rev) ; Console.ReadLine() ; } } }
在上面的程式中,Str 被用作變數來儲存字串的值。 while循環用於反轉字串,背後的邏輯是從右到左逐個改變字元的位置。
輸出:
代碼:
using System ; using System.Collections.Generic; using System.Linq ; using System.Text ; using System.Threading.Tasks ; static class StringHelper { public static string ReverseString(string str) { char[] array = str.ToCharArray() ; Array.Reverse(array) ; return new string(array) ; } } class Program { static void Main() { Console.WriteLine(StringHelper.ReverseString("This")) ; Console.WriteLine(StringHelper.ReverseString("is")) ; Console.WriteLine(StringHelper.ReverseString("C#")) ; Console.WriteLine(StringHelper.ReverseString("programming")) ; Console.ReadLine(); } }
上面的範例中,ReverseString方法用來取得需要反轉Array的字串值。反轉用於修改字元的順序。
輸出:
代碼:
using System; using System.Collections.Generic ; using System.Linq ; using System.Text ; using System.Threading.Tasks ; namespace reverseString { class Program { static void Main(string[] args) { string s = "", rev = "" ; int len = 0 ; Console.WriteLine("Enter a string") ; s = Console.ReadLine(); len = s.Length - 1; while (len >= 0) { rev = rev + s[len] ; len--; } Console.WriteLine("Reverse of string is {0}", rev) ; Console.ReadLine(); } } }
在上面的程式中,我們接受使用者的輸入來反轉字串。變數用於儲存字串的值。 while循環用於反轉字串,背後的邏輯是從右到左逐個改變字元的位置。
輸出:
代碼:
using System; using System.Collections.Generic ; using System.Linq ; using System.Text ; using System.Threading.Tasks ; namespace reverseString { class Program { static void Main(string[] args) { string s; Console.Write(" Enter the string : ") ; s = Console.ReadLine(); s = StringReverse(s); Console.Write(" Reverse is : ") ; Console.Write(s) ; Console.ReadLine() ; } public static string StringReverse(string s) { if (s.Length > 0) return s[s.Length - 1] + StringReverse(s.Substring(0, s.Length - 1)) ; else return s ; } } }
輸出:
代碼:
using System ; using System.Collections.Generic ; using System.Linq ; using System.Text ; using System.Threading.Tasks ; namespace reverseString { class Program { public static void Main() { Console.WriteLine(reverse("Hello")) ; Console.ReadLine(); } public static string reverse(string s) { string reverseStr = "" ; for (int a = s.Length - 1; a >= 0; a--) { reverseStr = reverseStr + s[a] ; } return reverseStr ; } } }
在上面的範例中,for迴圈用於反轉給定的字串。
輸出:
代碼:
using System ; using System.Collections.Generic ; using System.Linq ; using System.Text ; using System.Threading.Tasks ; namespace reverseString { class Program { public static void Main() { string s; Console.WriteLine("The value of given string is ") ; s = Console.ReadLine() ; char[] array = s.ToCharArray() ; Array.Reverse(array); Console.WriteLine(new String(array)) ; Console.ReadLine() ; } } }
輸出:
因此我們可以透過使用方法的數量來反轉任何給定的字串或數字。但我們應該確保我們的選擇不會影響效能,因為每種方法都有自己的時間複雜度。
以上是C# 中的反轉字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!