prime_tables.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. // Copyright 2008 Google Inc.
  2. // All Rights Reserved.
  3. //
  4. // Redistribution and use in source and binary forms, with or without
  5. // modification, are permitted provided that the following conditions are
  6. // met:
  7. //
  8. // * Redistributions of source code must retain the above copyright
  9. // notice, this list of conditions and the following disclaimer.
  10. // * Redistributions in binary form must reproduce the above
  11. // copyright notice, this list of conditions and the following disclaimer
  12. // in the documentation and/or other materials provided with the
  13. // distribution.
  14. // * Neither the name of Google Inc. nor the names of its
  15. // contributors may be used to endorse or promote products derived from
  16. // this software without specific prior written permission.
  17. //
  18. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  22. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  24. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  26. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. // This provides interface PrimeTable that determines whether a number is a
  30. // prime and determines a next prime number. This interface is used
  31. // in Google Test samples demonstrating use of parameterized tests.
  32. #ifndef GTEST_SAMPLES_PRIME_TABLES_H_
  33. #define GTEST_SAMPLES_PRIME_TABLES_H_
  34. #include <algorithm>
  35. // The prime table interface.
  36. class PrimeTable {
  37. public:
  38. virtual ~PrimeTable() {}
  39. // Returns true iff n is a prime number.
  40. virtual bool IsPrime(int n) const = 0;
  41. // Returns the smallest prime number greater than p; or returns -1
  42. // if the next prime is beyond the capacity of the table.
  43. virtual int GetNextPrime(int p) const = 0;
  44. };
  45. // Implementation #1 calculates the primes on-the-fly.
  46. class OnTheFlyPrimeTable : public PrimeTable {
  47. public:
  48. virtual bool IsPrime(int n) const {
  49. if (n <= 1) return false;
  50. for (int i = 2; i*i <= n; i++) {
  51. // n is divisible by an integer other than 1 and itself.
  52. if ((n % i) == 0) return false;
  53. }
  54. return true;
  55. }
  56. virtual int GetNextPrime(int p) const {
  57. for (int n = p + 1; n > 0; n++) {
  58. if (IsPrime(n)) return n;
  59. }
  60. return -1;
  61. }
  62. };
  63. // Implementation #2 pre-calculates the primes and stores the result
  64. // in an array.
  65. class PreCalculatedPrimeTable : public PrimeTable {
  66. public:
  67. // 'max' specifies the maximum number the prime table holds.
  68. explicit PreCalculatedPrimeTable(int max)
  69. : is_prime_size_(max + 1), is_prime_(new bool[max + 1]) {
  70. CalculatePrimesUpTo(max);
  71. }
  72. virtual ~PreCalculatedPrimeTable() { delete[] is_prime_; }
  73. virtual bool IsPrime(int n) const {
  74. return 0 <= n && n < is_prime_size_ && is_prime_[n];
  75. }
  76. virtual int GetNextPrime(int p) const {
  77. for (int n = p + 1; n < is_prime_size_; n++) {
  78. if (is_prime_[n]) return n;
  79. }
  80. return -1;
  81. }
  82. private:
  83. void CalculatePrimesUpTo(int max) {
  84. ::std::fill(is_prime_, is_prime_ + is_prime_size_, true);
  85. is_prime_[0] = is_prime_[1] = false;
  86. // Checks every candidate for prime number (we know that 2 is the only even
  87. // prime).
  88. for (int i = 2; i*i <= max; i += i%2+1) {
  89. if (!is_prime_[i]) continue;
  90. // Marks all multiples of i (except i itself) as non-prime.
  91. // We are starting here from i-th multiplier, because all smaller
  92. // complex numbers were already marked.
  93. for (int j = i*i; j <= max; j += i) {
  94. is_prime_[j] = false;
  95. }
  96. }
  97. }
  98. const int is_prime_size_;
  99. bool* const is_prime_;
  100. // Disables compiler warning "assignment operator could not be generated."
  101. void operator=(const PreCalculatedPrimeTable& rhs);
  102. };
  103. #endif // GTEST_SAMPLES_PRIME_TABLES_H_