ReversePolishNotation.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Collections;
  5. namespace Biff8Excel.Formulas
  6. {
  7. public class ReversePolishNotation
  8. {
  9. string Op;
  10. ushort CurLevel;
  11. ushort Level;
  12. string[] OpStack = new string[501];
  13. ushort[] LevelStack = new ushort[501];
  14. ushort StackTop;
  15. List<string> m_Result;
  16. bool init = false;
  17. public ReversePolishNotation()
  18. {
  19. //StackTop = -1;
  20. //StackTop = 0;
  21. //init = false;
  22. }
  23. void Push(string op, ushort level)
  24. {
  25. //StackTop++;
  26. OpStack[StackTop] = op;
  27. LevelStack[StackTop] = level;
  28. StackTop++;
  29. }
  30. bool Pop()
  31. {
  32. //if (StackTop == -1)
  33. // return false;
  34. if (!init)
  35. return false;
  36. Op = OpStack[StackTop];
  37. Level = LevelStack[StackTop];
  38. StackTop--;
  39. return true;
  40. }
  41. public List<string> ConverToReversePolishNotation(List<string> expressions)
  42. {
  43. string CurOp;
  44. m_Result = new List<string>();
  45. //StackTop = -1;
  46. StackTop = 0;
  47. init = false;
  48. for (int i = 0; i < expressions.Count; i++)
  49. {
  50. CurOp = expressions[i];
  51. if (CurOp == "+" || CurOp == "-")
  52. {
  53. while (Pop())
  54. {
  55. if (Level == CurLevel )
  56. {
  57. m_Result.Add(Op);
  58. }
  59. else
  60. {
  61. Push(Op,Level);
  62. break;
  63. }
  64. }
  65. Push( CurOp,CurLevel);
  66. }
  67. else if (CurOp == "*" || CurOp == "/")
  68. {
  69. while (Pop())
  70. {
  71. if (Level == CurLevel && Op == "^")
  72. {
  73. m_Result.Add(Op);
  74. }
  75. else
  76. {
  77. Push(Op, Level);
  78. break;
  79. }
  80. }
  81. Push(CurOp, CurLevel);
  82. }
  83. else if (CurOp == "^")
  84. {
  85. Push(CurOp, CurLevel);
  86. }
  87. else if (CurOp == "(")
  88. {
  89. CurLevel++;
  90. }
  91. else if (CurOp == ")")
  92. {
  93. while (Pop())
  94. {
  95. if (Level == CurLevel)
  96. {
  97. m_Result.Add(Op);
  98. }
  99. else
  100. {
  101. Push(Op, Level);
  102. break;
  103. }
  104. }
  105. CurLevel--;
  106. }
  107. else if (CurOp == " ")
  108. {
  109. // Ignore Space
  110. }
  111. else
  112. {
  113. m_Result.Add(CurOp);
  114. }
  115. }
  116. while (Pop())
  117. {
  118. m_Result.Add(Op);
  119. }
  120. return m_Result;
  121. }
  122. }
  123. }