-
Notifications
You must be signed in to change notification settings - Fork 1
/
PatternsGen
59 lines (51 loc) · 1.73 KB
/
PatternsGen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace VariableLengthPatternGen
{
class Program
{
/// <summary>
/// Main method, reads in from file list of numbers and breaks them up
/// into sets so number 5555 would generate 5, 55, 555, 5555
/// Then sends them to CreatePatterns to create the patterns
/// </summary>
/// <param name="args"></param>
private static void Main(string[] args)
{
//Reads in file and creates a list
var file = File.ReadAllLines("test.txt");
var phoneNum = file.ToList();
//get the length taht the final expression needs to be
var size = phoneNum[0].Length;
var levelAll = new List<string>();
foreach (var k in phoneNum) // brakes up each number passed through and adds it to the proper list
{
var charArr = k.ToCharArray();
var x = "";
foreach (var t in charArr)
{
x += new string(new[] { t });
levelAll.Add(x);
}
}
levelAll = PatterenGen.PatternList(levelAll, size);
levelAll.Sort();
PrintList(levelAll);
Console.ReadKey();
}
/// <summary>
/// Pritns out the final patterns.
/// </summary>
/// <param name="plist"> is the final list being printed out to the console</param>
public static void PrintList(List<string> plist)
{
foreach (var expression in plist)
{
Console.WriteLine(expression); //prints out list
}
}
}
}
}