使用STD :: MAP的错误减少读取成员

发布于 2025-01-20 10:44:56 字数 912 浏览 0 评论 0原文

我使用 polinom 并将它们作为度数和系数保存在 std::map 中。这是代码片段:

std::map<int,int> pol;

地图充满了数据,然后我开始处理它。

for(std::map<int,int>::iterator it = pol.begin(); it != pol.end(); it++) {
              if( it->first != 0 ) {
                      it->second *= it->first;
                      it->first--;
              }
              else {
                       it->first = 0;
                       it->second = 0;
              }
}

it->first-- 开始,进一步,我得到了大量的输出,其中包含错误,例如 error: decrement of read-only member 'std::pair::第一个' 它->第一--; ^~错误:分配只读成员 'std::pair::first' it->first = it->first - 1;为什么它是只读的?我该如何修复它?

$ g++ --version
g++ (Debian 6.3.0-5) 6.3.0 20170124

I work with polinoms and keep them in std::map as degrees and coefficients. Here's the code pieces:

std::map<int,int> pol;

Map is filled with data and then I begin to process it.

for(std::map<int,int>::iterator it = pol.begin(); it != pol.end(); it++) {
              if( it->first != 0 ) {
                      it->second *= it->first;
                      it->first--;
              }
              else {
                       it->first = 0;
                       it->second = 0;
              }
}

And beginning from it->first-- and further I'm getting very big amount of output with errors like error: decrement of read-only member ‘std::pair<const int, int>::first’
it->first--;
^~

or error: assignment of read-only member ‘std::pair<const int, int>::first’
it->first = it->first - 1;
Why is it readonly? How can I fix it?

$ g++ --version
g++ (Debian 6.3.0-5) 6.3.0 20170124

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

她比我温柔 2025-01-27 10:44:56

它是只读的,因为如果允许您自由修改映射中的键,则会违反映射使用的数据结构(通常是红黑树)的不变量。

您需要删除该元素并将其添加回减少的值。这确保了节点将位于树中的正确位置。

It's read-only because if you were allowed to freely modify the key in the map, you would violate the invariant of the data structure the map uses (typically a red-black tree).

You need to remove the element and add it back in with the decremented value. This ensures that the node will be in the correct place in the tree.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文