Calculate.cs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PPRazumovskiy
  7. {
  8. public class Calculate
  9. {
  10. //int countColumn;
  11. int countRow;
  12. string text = string.Empty;
  13. List<string> allOperation = new List<string>();
  14. List<string> allVariables = new List<string>();
  15. List<string> allHeaders = new List<string>();
  16. List<CalculateElement> calculateElements = new List<CalculateElement>();
  17. string[,] all = new string[0,0];
  18. public Calculate(string text)
  19. {
  20. this.text = text;
  21. for (int i = 0; i < text.Length; i++)
  22. {
  23. if (GlobalElement.allSymbols.Contains(i.ToString())) allOperation.Add(i.ToString());
  24. else allVariables.Add(i.ToString());
  25. }
  26. //countColumn = allOperation.Count + allVariables.Count;
  27. countRow = Convert.ToInt32(Math.Pow(2,allVariables.Count));
  28. getAllHeaders(text);
  29. foreach (var header in allHeaders)
  30. {
  31. calculateElements.Add(new CalculateElement(header));
  32. }
  33. all = new string[countRow,calculateElements.Count];
  34. for (int i = 0; i < all.GetLength(1); i++)
  35. {
  36. all[0,i] = calculateElements[i].Header;
  37. }
  38. }
  39. private void getAllHeaders(string text)
  40. {
  41. for (int i = 0; i < text.Length; i++)
  42. {
  43. if (!GlobalElement.allSymbols.Contains(text[i].ToString())) allHeaders.Add(text[i].ToString());
  44. }
  45. //отрицание
  46. for (int i = 0; i < text.Length; i++)
  47. {
  48. if (text[i].ToString() == GlobalElement.allSymbols[0]) allHeaders.Add(text[i].ToString() + text[i+1]);
  49. }
  50. //штрих шеффера
  51. for (int i = 0; i < text.Length; i++)
  52. {
  53. if (text[i].ToString() == GlobalElement.allSymbols[4])
  54. {
  55. if (text[i + 1].ToString() == GlobalElement.allSymbols[0]) allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString() + text[i + 2].ToString());
  56. else allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString());
  57. }
  58. }
  59. //стрелка пирса
  60. for (int i = 0; i < text.Length; i++)
  61. {
  62. if (text[i].ToString() == GlobalElement.allSymbols[5])
  63. {
  64. if (text[i+1].ToString() == GlobalElement.allSymbols[0]) allHeaders.Add(text[i-1].ToString() + text[i].ToString() + text[i+1].ToString() + text[i+2].ToString());
  65. else allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString());
  66. }
  67. }
  68. //исключающее не или
  69. for (int i = 0; i < text.Length; i++)
  70. {
  71. if (text[i].ToString() == GlobalElement.allSymbols[7])
  72. {
  73. if (text[i + 1].ToString() == GlobalElement.allSymbols[0]) allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString() + text[i + 2].ToString());
  74. else allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString());
  75. }
  76. }
  77. //конъюнкция
  78. for (int i = 0; i < text.Length; i++)
  79. {
  80. if (text[i].ToString() == GlobalElement.allSymbols[1])
  81. {
  82. if (text[i + 1].ToString() == GlobalElement.allSymbols[0]) allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString() + text[i + 2].ToString());
  83. else allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString());
  84. }
  85. }
  86. //дизъюнкция
  87. for (int i = 0; i < text.Length; i++)
  88. {
  89. if (text[i].ToString() == GlobalElement.allSymbols[2])
  90. {
  91. if (text[i + 1].ToString() == GlobalElement.allSymbols[0]) allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString() + text[i + 2].ToString());
  92. else allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString());
  93. }
  94. }
  95. //сумма по модулю 2
  96. for (int i = 0; i < text.Length; i++)
  97. {
  98. if (text[i].ToString() == GlobalElement.allSymbols[3])
  99. {
  100. if (text[i + 1].ToString() == GlobalElement.allSymbols[0]) allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString() + text[i + 2].ToString());
  101. else allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString());
  102. }
  103. }
  104. //импликация
  105. for (int i = 0; i < text.Length; i++)
  106. {
  107. if (text[i].ToString() == GlobalElement.allSymbols[8])
  108. {
  109. if (text[i + 1].ToString() == GlobalElement.allSymbols[0]) allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString() + text[i + 2].ToString());
  110. else allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString());
  111. }
  112. }
  113. //эквиваленция
  114. for (int i = 0; i < text.Length; i++)
  115. {
  116. if (text[i].ToString() == GlobalElement.allSymbols[6])
  117. {
  118. if (text[i + 1].ToString() == GlobalElement.allSymbols[0]) allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString() + text[i + 2].ToString());
  119. else allHeaders.Add(text[i - 1].ToString() + text[i].ToString() + text[i + 1].ToString());
  120. }
  121. }
  122. }
  123. //public int CountColumn { get => countColumn; set => countColumn = value; }
  124. public int CountRow { get => countRow; set => countRow = value; }
  125. public List<string> AllOperation { get => allOperation; set => allOperation = value; }
  126. public List<string> AllVariables { get => allVariables; set => allVariables = value; }
  127. public List<CalculateElement> CalculateElements { get => calculateElements; set => calculateElements = value; }
  128. public string[,] All { get => all; set => all = value; }
  129. public class CalculateElement
  130. {
  131. string header;
  132. List<Values> values = new List<Values>();
  133. public CalculateElement(string header)
  134. {
  135. this.header = header;
  136. }
  137. public string Header { get => header; set => header = value; }
  138. public List<Values> Values1 { get => values; set => values = value; }
  139. public class Values
  140. {
  141. string value;
  142. public Values(string value)
  143. {
  144. this.value = value;
  145. }
  146. public string Value { get => value; set => this.value = value; }
  147. }
  148. }
  149. }
  150. }