- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
基本上,我的问题是:我让用户定义二维数组的大小 (N,M),然后我声明:
整数矩阵[N][M];
然后我需要将这个未初始化的矩阵传递给一个函数,该函数从 .csv 文件中读取一些数据并将其放入矩阵中,所以我尝试了:
void readwrite(int &matrix[N][], const int N, const int M){....};
int main(){
....
cin>>N;
cin>>M;
int matrix[N][M];
readwrite(matrix,N,M);
};
但是,当我编译它时,出现以下错误:“N 未在此范围内声明”。
关于如何使这项工作有任何想法吗?
谢谢大家!
最佳答案
OP 正在尝试的东西很难正确实现,而且实现它的好处与成本相比是如此微不足道......好吧,我将引用经典。
The only winning move is not to play.
-约书亚, war 游戏
您不能安全地将 C++ 中动态分配的二维数组传递给函数,因为您始终必须在编译时至少知道一个维度。
我可以指向 Passing a 2D array to a C++ function因为那看起来像一个很好的拷贝。我不会,因为它指的是静态分配的数组。
您可以玩一些愚蠢的转换游戏,强制将数组放入函数中,然后再将其转换回内部。我不打算解释如何做到这一点,因为它是史诗级的愚蠢行为,应该是一种开火进攻。
你可以传递一个指向指针的指针,int **
,但是构造和销毁逻辑是一组怪诞的new
和循环。此外,最终结果将分配的内存分散在 RAM 周围,削弱了处理器在预测和缓存方面的尝试。在现代处理器上,如果您无法预测和缓存,您就会放弃 CPU 的大部分性能。
您要做的是保持一维。一维数组很容易通过。索引算法非常简单且易于预测。都是一个内存块,因此缓存命中的可能性更大。
制作一维数组很简单:不需要。使用 std::vector
相反。
std::vector<int> arr(rows*columns);
如果你必须这样做,因为作业规范说“没有 vector !”好吧,你被困住了。
int * arr = new int[rows*columns];
注意我使用的是行
和列
,而不是M
和N
。当遇到 M
和 N
哪个是哪个?谁知道,谁在乎,为什么首先要对自己这样做?给你的变量起一个好的、描述性的名字,并享受在你以后调试代码时能够阅读你的代码所节省的时间。
用法的核心与数组和 vector 相同:
int test = arr[row * columns + column];
将在 [row][column]
处恢复二维空间中的元素。我不应该解释这些变量的含义。 M
和 N
死亡。
定义一个函数是:
void function (std::vector<int> & arr, size_t rows, size_t columns)
或者(恶心)
void function (int * arr, size_t rows, size_t columns)
请注意,行
和列
的类型为size_t
。 size_t
是无符号的(负数组大小不是您想要的,那么为什么允许它呢?)并且保证它足够大以容纳您可以使用的最大可能数组索引。换句话说,它比 int
更合适。但为什么要到处传递 rows
和 columns
呢?在这一点上,明智的做法是围绕数组及其控制变量创建一个包装器,然后绑定(bind)一些函数以使其更易于使用。
template<class TYPE>
class Matrix
{
private:
size_t rows, columns;
std::vector<TYPE> matrix;
public:
// no default constructor. Matrix is BORN ready.
Matrix(size_t numrows, size_t numcols):
rows(numrows), columns(numcols), matrix(rows * columns)
{
}
// vector handles the Rule of Three for you. Don't need copy and move constructors
// a destructor or assignment and move operators
// element accessor function
TYPE & operator()(size_t row, size_t column)
{
// check bounds here
return matrix[row * columns + column];
}
// constant element accessor function
TYPE operator()(size_t row, size_t column) const
{
// check bounds here
return matrix[row * columns + column];
}
// stupid little getter functions in case you need to know how big the matrix is
size_t getRows() const
{
return rows;
}
size_t getColumns() const
{
return columns;
}
// and a handy-dandy stream output function
friend std::ostream & operator<<(std::ostream & out, const Matrix & in)
{
for (int i = 0; i < in.getRows(); i++)
{
for (int j = 0; j < in.getColumns(); j++)
{
out << in(i,j) << ' ';
}
out << '\n';
}
return out;
}
};
对数组版本的粗略描述只是为了展示允许 vector 完成其工作的好处。未经测试。可能包含咆哮。重点是更多的代码和更多的错误空间。
template<class TYPE>
class ArrayMatrix
{
private:
size_t rows, columns;
TYPE * matrix;
public:
ArrayMatrix(size_t numrows, size_t numcols):
rows(numrows), columns(numcols), matrix(new TYPE[rows * columns])
{
}
// Array version needs the copy and move constructors to deal with that damn pointer
ArrayMatrix(const ArrayMatrix & source):
rows(source.rows), columns(source.columns), matrix(new TYPE[rows * columns])
{
for (size_t i = 0; i < rows * columns; i++)
{
matrix[i] = source.matrix[i];
}
}
ArrayMatrix(ArrayMatrix && source):
rows(source.rows), columns(source.columns), matrix(source.matrix)
{
source.rows = 0;
source.columns = 0;
source.matrix = nullptr;
}
// and it also needs a destructor
~ArrayMatrix()
{
delete[] matrix;
}
TYPE & operator()(size_t row, size_t column)
{
// check bounds here
return matrix[row * columns + column];
}
TYPE operator()(size_t row, size_t column) const
{
// check bounds here
return matrix[row * columns + column];
}
// and also needs assignment and move operator
ArrayMatrix<TYPE> & operator=(const ArrayMatrix &source)
{
ArrayMatrix temp(source);
swap(*this, temp); // copy and swap idiom. Read link below.
// not following it exactly because operator=(ArrayMatrix source)
// collides with operator=(ArrayMatrix && source) of move operator
return *this;
}
ArrayMatrix<TYPE> & operator=(ArrayMatrix && source)
{
delete[] matrix;
rows = source.rows;
columns = source.columns;
matrix = source.matrix;
source.rows = 0;
source.columns = 0;
source.matrix = nullptr;
return *this;
}
size_t getRows() const
{
return rows;
}
size_t getColumns() const
{
return columns;
}
friend std::ostream & operator<<(std::ostream & out, const ArrayMatrix & in)
{
for (int i = 0; i < in.getRows(); i++)
{
for (int j = 0; j < in.getColumns(); j++)
{
out << in(i,j) << ' ';
}
out << std::endl;
}
return out;
}
//helper for swap.
friend void swap(ArrayMatrix& first, ArrayMatrix& second)
{
std::swap(first.rows, second.rows);
std::swap(first.columns, second.columns);
std::swap(first.matrix, second.matrix);
}
};
创建其中之一是
Matrix<int> arr(rows, columns);
现在传递数组是
void func(Matrix & arr);
使用数组是
int test = arr(row, column);
所有索引数学都隐藏在视线之外。
其他引用:
关于c++ - 将未知大小的二维数组传递给函数 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34277827/
Github:https://github.com/jjvang/PassIntentDemo 我一直在关注有关按 Intent 传递对象的教程:https://www.javacodegeeks.c
我有一个 View ,其中包含自动生成的 text 类型的 input 框。当我单击“通过电子邮件发送结果”按钮时,代码会将您带到 CalculatedResults Controller 中的 Em
我有一个基本的docker镜像,我将以此为基础构建自己的镜像。我没有基础镜像的Dockerfile。 基本上,基本镜像使用两个--env arg,一个接受其许可证,一个选择在容器中激活哪个框架。我可以
假设我想计算 2^n 的总和,n 范围从 0 到 100。我可以编写以下内容: seq { 0 .. 100 } |> Seq.sumBy ((**) 2I) 但是,这与 (*) 或其他运算符/函数不
我有这个网址: http://www.example.com/get_url.php?ID=100&Link=http://www.test.com/page.php?l=1&m=7 当我打印 $_G
我想将 window.URL.createObjectURL(file) 创建的地址传递给 dancer.js 但我得到 GET blob:http%3A//localhost/b847c5cd-aa
我想知道如何将 typedef 传递给函数。例如: typedef int box[3][3]; box empty, *board[3][3]; 我如何将 board 传递给函数?我
我正在将一些代码从我的 Controller 移动到核心数据应用程序中的模型。 我编写了一个方法,该方法为我定期发出的特定获取请求返回 NSManagedObjectID。 + (NSManagedO
为什么我不能将类型化数组传递到采用 any[] 的函数/构造函数中? typedArray = new MyType[ ... ]; items = new ko.observableArray(ty
我是一名新的 Web 开发人员,正在学习 html5 和 javascript。 我有一个带有“选项卡”的网页,可以使网页的某些部分消失并重新出现。 链接如下: HOME 和 JavaScript 函
我试图将对函数的引用作为参数传递 很难解释 我会写一些伪代码示例 (calling function) function(hello()); function(pass) { if this =
我在尝试调用我正在创建的 C# 项目中的函数时遇到以下错误: System.Runtime.InteropServices.COMException: Operation is not allowed
使用 ksh。尝试重用当前脚本而不修改它,基本上可以归结为如下内容: `expr 5 $1 $2` 如何将乘法命令 (*) 作为参数 $1 传递? 我首先尝试使用“*”,甚至是\*,但没有用。我尝试
我一直在研究“Play for Java”这本书,这本书非常棒。我对 Java 还是很陌生,但我一直在关注这些示例,我有点卡在第 3 章上了。可以在此处找到代码:Play for Java on Gi
我知道 Javascript 中的对象是通过引用复制/传递的。但是函数呢? 当我跳到一些令人困惑的地方时,我正在尝试这段代码。这是代码片段: x = function() { console.log(
我希望能够像这样传递参数: fn(a>=b) or fn(a!=b) 我在 DjangoORM 和 SQLAlchemy 中看到了这种行为,但我不知道如何实现它。 最佳答案 ORM 使用 specia
在我的 Angular 项目中,我最近将 rxjs 升级到版本 6。现在,来自 npm 的模块(在 node_modules 文件夹内)由于一些破坏性更改而失败(旧的进口不再有效)。我为我的代码调整了
这个问题在这里已经有了答案: The issue of * in Command line argument (6 个答案) 关闭 3 年前。 我正在编写一个关于反向波兰表示法的 C 程序,它通过命
$(document).ready(function() { function GetDeals() { alert($(this).attr("id")); } $('.filter
下面是一个例子: 复制代码 代码如下: use strict; #这里是两个数组 my @i =('1','2','3'); my @j =('a','b','c'); &n
我是一名优秀的程序员,十分优秀!