- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我已经看到几个与此相关的问题,但我想验证我是否遇到了类似的问题。我的代码分配了一个包含大量元素的 bool 数组。这是我的代码,在 x86_64 Linux 机器上编译:
#include <iostream>
#include <math.h>
using std::cout;
using std::endl;
using std::nothrow;
long problem3()
{
long upper_bound = 600851475143;
long max_prime_factor = 1;
long max_possible_prime = (long) sqrt(upper_bound) + 1;
bool * primes;
primes = new (nothrow) bool[upper_bound];
primes[0] = false; //segmentation fault occurs here
primes[1] = false;
for (long i = 2; i < upper_bound; i++)
primes[i] = true;
for (long number = 2; number < max_possible_prime; number++)
{
if (primes[number] == true)
{
if (upper_bound % number == 0)
{
max_prime_factor = number;
}
for (long j = number + number; j < upper_bound; j += number)
primes[j] = false;
}
else { continue; }
}
return max_prime_factor;
}
int main ( int argc, char *argv[] )
{
cout<<"Problem 3: "<<problem3()<<endl;
}
构建此代码并按原样运行它会在此行出现段错误:
primes[0] = false
如果我删除 nothrow
指令来更改此行:
primes = new (nothrow) bool[upper_bound];
为此:
primes = new bool[upper_bound];
我收到一条错误消息,指出:
terminate called after throwing an instance of 'std::bad_alloc'
我认为这意味着分配失败,大概是因为大小(基于 similar questions 和 other referenced links 。
CodeBlocks 中的调试器显示 primes
仍然设置为 0x0
,即使在它应该被分配之后也是如此。 Valgrind 证实了这一点:
==15436== Command: ./main
==15436==
==15436== Invalid write of size 1
==15436== at 0x400A81: problem3() (main.cpp:54)
==15436== by 0x400B59: main (main.cpp:77)
==15436== Address 0x0 is not stack'd, malloc'd or (recently) free'd
==15436==
==15436==
==15436== Process terminating with default action of signal 11 (SIGSEGV)
==15436== Access not within mapped region at address 0x0
==15436== at 0x400A81: problem3() (main.cpp:54)
==15436== by 0x400B59: main (main.cpp:77)
==15436== If you believe this happened as a result of a stack
==15436== overflow in your program's main thread (unlikely but
==15436== possible), you can try to increase the size of the
==15436== main thread stack using the --main-stacksize= flag.
==15436== The main thread stack size used in this run was 8388608.
==15436==
==15436== HEAP SUMMARY:
==15436== in use at exit: 0 bytes in 0 blocks
==15436== total heap usage: 1 allocs, 0 frees, 0 bytes allocated
==15436==
==15436== All heap blocks were freed -- no leaks are possible
==15436==
==15436== For counts of detected and suppressed errors, rerun with: -v
==15436== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 3 from 3)
Segmentation fault
问题:我知道 std::vector
,那么我应该用它来分配这个数组吗?我也愿意尝试不同的算法,但我想知道我是否遗漏了 C++ 的细微差别,这将允许我分配这样一个数组(即使它绝对很大而且我理解)。我也尝试尽可能多地调试这个问题,但如果还有什么我应该提供的,请告诉我,这样我下次遇到麻烦时就可以使用这些工具。
最佳答案
Pollard 的 Rho 算法是一种极其简单的算法,您可以使用它来分解您正在处理的(大)数。
为了简洁起见,我将省略数学解释,但您可以在 Wikipedia 上找到详细信息文章。
unisgned long long GCD(unisgned long long x, unisgned long long y)
{
while (y != 0)
{
unsigned long long t = b;
b = a % b;
a = t;
}
return a;
}
unsigned long long f(unsigned long long x, unsigned long long n)
{
return (x * x + 1) % n;
}
unsigned long long PollardRho(unsigned long long n)
{
unsigned long long x = 2, y = 2, d = 1;
while (d == 1)
{
x = f(x);
y = f(f(y));
d = GCD(std::abs(x - y), n);
}
if (d == n)
throw "Failure";
return d;
}
unsigned long long MaxFactor(unsigned long long n)
{
unsigned long long largest = 1;
while (n != 1)
{
unsigned long long factor = PollardRho(n);
largest = std::max(largest, factor);
n /= factor;
}
return largest;
}
注意:我实际上并没有测试 C++ 代码。我在 Mathematica 中对其进行了原型(prototype)设计,它正确地返回了最大质因数 6857
。
关于c++ - 如何分配当前在分配期间抛出 std::bad_alloc 错误的大量 bool 数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11093571/
我有一个带有列的表提供者 implied(tiny int)(something like nullable bool) provi
我正在阅读 VideoFileWriter来自 AForge.Video.FFMPEG 的类(class)通过 ILSPY 组装(我很想看看特定方法是如何工作的)并发现了这个: public bool
这是我的完整代码... import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import
我有一个输入 list类型 [Maybe SomeType]和一个谓词 p类型 SomeType -> Bool ,我想回答这个问题“谓词 p 是否适用于所有碰巧在输入中的 SomeType ?”。
使用 !!x 有什么区别吗?对比(bool)x ? 假设__STDC_VERSION__ >= 199901L和 #include 他们都保证结果是0吗?或 1 ,并且无论 x 的大小和值如何,都不
我正在编写一些 C++ 代码,我想调用两个函数(checkXDirty 和 checkYDirty),并返回 true如果任一返回 true。即使一个返回 true 我也需要评估两者,所以我的第一个想
我注意到 bool在 QtCreator 中以不同于其他类型的颜色突出显示: 只有在包含某些 header 时才会发生这种情况,最终我将其追踪到 . QtCreator 的代码检查器似乎无法手动跟踪
有一个函数: func (first: Int) -> Int -> Bool -> String { return ? } 返回值怎么写?我对上面 func 的返回类型感到很困惑。 最
训练神经网络学习“异或” 我正在尝试使用“批量归一化”,我创建了一个批量归一化层函数“batch_norm1”。 import tensorflow as tf import nump
我已经创建了任务函数来验证我的 json 文件。一切正常,直到我没有使用结果。当我试图从 async task function 获得结果时它显示错误为 Cannot implicitly conve
我有一个函数 func login (parameters: [(String, Any)], completion: @escaping (Bool) -> Vo
我正在处理最近从 X/Motif 转移到 Qt 的 C++ 代码库。我正在尝试编写一个 Perl 脚本,它将用 bool 替换所有出现的 Boolean(来自 X)。该脚本只是做了一个简单的替换。 s
嗨,我正尝试创建一个Visiblity小部件,如果用户在Firebase数据库阵列上,该小部件将显示。看起来像这样(成员数组): 如您所见,我创建了一个StreamBuilder,如果当前用户的用户名
我创建了如下的rest api方法, Future activateAccount(int id, int code) async{ final body = {"code": '$c
在我的Flutter应用中,我有一个返回Future的函数,但我想将结果作为Stream。这是函数: Future isGpsOn() async { if (await Geolocat
我可以看到 BOOLEAN 覆盖了 __visit_name__ class BOOLEAN(Boolean): __visit_name__ = 'BOOLEAN' 控制调度员选择的访问者方
考虑以下代码: bool x; bool? y = null; x = y?? true; 将 bool? 分配给 bool 是一个编译时错误,但上面的代码在编译和运行时都成功了。为什么?尽管第三条语
我正在重写一些 Javascript 代码以在 Excel VBA 中工作。由于在这个网站上搜索,我已经设法翻译了几乎所有的 Javascript 代码!但是,有些代码我无法准确理解它在做什么。这是一
我想拍一张bool来自Vec并在 if 语句中进行比较。如何解决以下错误? | 7 | if cell { | ^^^^ expected
我在我的应用程序崩溃跟踪工具中发现了一些崩溃。基本上我有一个 tabBarController,其中一个选项卡有一个嵌入式 UIWebView,另一个选项卡有一个带有 UITableView 的 Co
我是一名优秀的程序员,十分优秀!