largestProduct.cpp 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. // Structures
  5. struct stack {
  6. int items[1000];
  7. int stackTop;
  8. };
  9. // Prototypes
  10. void push (stack &, int);
  11. int pop (stack &);
  12. bool isEmpty (stack &);
  13. void initStack (stack &);
  14. // --------------------------------
  15. // main
  16. // --------------------------------
  17. int main() {
  18. // Variables, the stack, and the array
  19. int num1 = 0, num2 = 0, num3 = 0, num4 = 0, num5 = 0;
  20. int temp = 0, max = 0, counter = 0;
  21. stack myStack;
  22. initStack(myStack);
  23. int array[1000] = {
  24. 7,3,1,6,7,1,7,6,5,3,1,3,3,0,6,2,4,9,1,9,2,2,5,1,1,
  25. 9,6,7,4,4,2,6,5,7,4,7,4,2,3,5,5,3,4,9,1,9,4,9,3,4,
  26. 9,6,9,8,3,5,2,0,3,1,2,7,7,4,5,0,6,3,2,6,2,3,9,5,7,
  27. 8,3,1,8,0,1,6,9,8,4,8,0,1,8,6,9,4,7,8,8,5,1,8,4,3,
  28. 8,5,8,6,1,5,6,0,7,8,9,1,1,2,9,4,9,4,9,5,4,5,9,5,0,
  29. 1,7,3,7,9,5,8,3,3,1,9,5,2,8,5,3,2,0,8,8,0,5,5,1,1,
  30. 1,2,5,4,0,6,9,8,7,4,7,1,5,8,5,2,3,8,6,3,0,5,0,7,1,
  31. 5,6,9,3,2,9,0,9,6,3,2,9,5,2,2,7,4,4,3,0,4,3,5,5,7,
  32. 6,6,8,9,6,6,4,8,9,5,0,4,4,5,2,4,4,5,2,3,1,6,1,7,3,
  33. 1,8,5,6,4,0,3,0,9,8,7,1,1,1,2,1,7,2,2,3,8,3,1,1,3,
  34. 6,2,2,2,9,8,9,3,4,2,3,3,8,0,3,0,8,1,3,5,3,3,6,2,7,
  35. 6,6,1,4,2,8,2,8,0,6,4,4,4,4,8,6,6,4,5,2,3,8,7,4,9,
  36. 3,0,3,5,8,9,0,7,2,9,6,2,9,0,4,9,1,5,6,0,4,4,0,7,7,
  37. 2,3,9,0,7,1,3,8,1,0,5,1,5,8,5,9,3,0,7,9,6,0,8,6,6,
  38. 7,0,1,7,2,4,2,7,1,2,1,8,8,3,9,9,8,7,9,7,9,0,8,7,9,
  39. 2,2,7,4,9,2,1,9,0,1,6,9,9,7,2,0,8,8,8,0,9,3,7,7,6,
  40. 6,5,7,2,7,3,3,3,0,0,1,0,5,3,3,6,7,8,8,1,2,2,0,2,3,
  41. 5,4,2,1,8,0,9,7,5,1,2,5,4,5,4,0,5,9,4,7,5,2,2,4,3,
  42. 5,2,5,8,4,9,0,7,7,1,1,6,7,0,5,5,6,0,1,3,6,0,4,8,3,
  43. 9,5,8,6,4,4,6,7,0,6,3,2,4,4,1,5,7,2,2,1,5,5,3,9,7,
  44. 5,3,6,9,7,8,1,7,9,7,7,8,4,6,1,7,4,0,6,4,9,5,5,1,4,
  45. 9,2,9,0,8,6,2,5,6,9,3,2,1,9,7,8,4,6,8,6,2,2,4,8,2,
  46. 8,3,9,7,2,2,4,1,3,7,5,6,5,7,0,5,6,0,5,7,4,9,0,2,6,
  47. 1,4,0,7,9,7,2,9,6,8,6,5,2,4,1,4,5,3,5,1,0,0,4,7,4,
  48. 8,2,1,6,6,3,7,0,4,8,4,4,0,3,1,9,9,8,9,0,0,0,8,8,9,
  49. 5,2,4,3,4,5,0,6,5,8,5,4,1,2,2,7,5,8,8,6,6,6,8,8,1,
  50. 1,6,4,2,7,1,7,1,4,7,9,9,2,4,4,4,2,9,2,8,2,3,0,8,6,
  51. 3,4,6,5,6,7,4,8,1,3,9,1,9,1,2,3,1,6,2,8,2,4,5,8,6,
  52. 1,7,8,6,6,4,5,8,3,5,9,1,2,4,5,6,6,5,2,9,4,7,6,5,4,
  53. 5,6,8,2,8,4,8,9,1,2,8,8,3,1,4,2,6,0,7,6,9,0,0,4,2,
  54. 2,4,2,1,9,0,2,2,6,7,1,0,5,5,6,2,6,3,2,1,1,1,1,1,0,
  55. 9,3,7,0,5,4,4,2,1,7,5,0,6,9,4,1,6,5,8,9,6,0,4,0,8,
  56. 0,7,1,9,8,4,0,3,8,5,0,9,6,2,4,5,5,4,4,4,3,6,2,9,8,
  57. 1,2,3,0,9,8,7,8,7,9,9,2,7,2,4,4,2,8,4,9,0,9,1,8,8,
  58. 8,4,5,8,0,1,5,6,1,6,6,0,9,7,9,1,9,1,3,3,8,7,5,4,9,
  59. 9,2,0,0,5,2,4,0,6,3,6,8,9,9,1,2,5,6,0,7,1,7,6,0,6,
  60. 0,5,8,8,6,1,1,6,4,6,7,1,0,9,4,0,5,0,7,7,5,4,1,0,0,
  61. 2,2,5,6,9,8,3,1,5,5,2,0,0,0,5,5,9,3,5,7,2,9,7,2,5,
  62. 7,1,6,3,6,2,6,9,5,6,1,8,8,2,6,7,0,4,2,8,2,5,2,4,8,
  63. 3,6,0,0,8,2,3,2,5,7,5,3,0,4,2,0,7,5,2,9,6,3,4,5,0
  64. };
  65. // Introduce the program
  66. cout << "------------------------------------------------" << endl;
  67. cout << " Finding the product of consecutive numbers " << endl;
  68. cout << "------------------------------------------------" << endl;
  69. cout << endl;
  70. cout << "This program takes a 1,000-digit integer, stored" << endl;
  71. cout << "as an array, and finds the largest product of" << endl;
  72. cout << "five consecutive numbers in the integer." << endl;
  73. cout << endl;
  74. cout << "Processing..." << endl;
  75. cout << endl;
  76. // Get the array onto the stack
  77. for (counter = 0; counter < 1000; ++counter)
  78. push(myStack, array[counter]);
  79. // Do work
  80. while (!isEmpty(myStack)) {
  81. num1 = pop(myStack);
  82. num2 = pop(myStack);
  83. num3 = pop(myStack);
  84. num4 = pop(myStack);
  85. num5 = pop(myStack);
  86. temp = num1 * num2 * num3 * num4 * num5;
  87. if (temp > max) {
  88. max = temp;
  89. }
  90. if (!isEmpty(myStack)) {
  91. push(myStack, num5);
  92. push(myStack, num4);
  93. push(myStack, num3);
  94. push(myStack, num2);
  95. }
  96. }
  97. cout << "The largest product is " << max << endl;
  98. cout << endl;
  99. cout << "------------------------------------------------" << endl;
  100. cout << "\\\\//_ Live long and prosper." << endl;
  101. return (0);
  102. } // End main
  103. // --------------------------------
  104. // push
  105. // --------------------------------
  106. void push (stack & myStack, int n) {
  107. myStack.items[++myStack.stackTop] = n;
  108. } // End push
  109. // --------------------------------
  110. // pop
  111. // --------------------------------
  112. int pop (stack & myStack) {
  113. int result;
  114. result = myStack.items[myStack.stackTop--];
  115. return result;
  116. } // End pop
  117. // --------------------------------
  118. // isEmpty
  119. // --------------------------------
  120. bool isEmpty (stack & myStack) {
  121. return (myStack.stackTop < 0);
  122. } // End isEmpty
  123. // --------------------------------
  124. // initStack
  125. // --------------------------------
  126. void initStack (stack & myStack) {
  127. myStack.stackTop = -1;
  128. } // End initStack