सबसे पहले, एक सूची बनाएं -
List list = new List();
यहां स्ट्रिंग "xyz" है जिसके लिए हम सबलिस्ट पाएंगे। लूपिंग करते समय हम एक और सूची घोषित करेंगे, जो हर सही पुनरावृत्ति पर सबलिस्ट उत्पन्न करेगी -
for (int i = 1; i < str.Length; i++) { list.Add(str[i - 1].ToString()); List newlist = new List(); for (int j = 0; j < list.Count; j++) { string list2 = list[j] + str[i]; newlist.Add(list2); } list.AddRange(newlist); }
निम्नलिखित पूरा कोड है -
उदाहरण
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Demo { class MyApplication { static void Main(string[] args) { string str = "xyz"; List list = new List(); for (int i = 1; i < str.Length; i++) { list.Add(str[i - 1].ToString()); List newlist = new List(); for (int j = 0; j < list.Count; j++) { string list2 = list[j] + str[i]; newlist.Add(list2); } list.AddRange(newlist); } list.Add(str[str.Length - 1].ToString()); list.Sort(); Console.WriteLine(string.Join(Environment.NewLine, list)); } } }
आउटपुट
x xy xyz xz y yz z