在 Python 中复制字典的快速方法

Fast way to copy dictionary in Python(在 Python 中复制字典的快速方法)
本文介绍了在 Python 中复制字典的快速方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 Python 程序,可以经常使用字典.我必须复制字典数千次.我需要密钥和相关内容的副本.副本将被编辑,并且不得链接到原件(例如,副本中的更改不得影响原件.)

I have a Python program that works with dictionaries a lot. I have to make copies of dictionaries thousands of times. I need a copy of both the keys and the associated contents. The copy will be edited and must not be linked to the original (e.g. changes in the copy must not affect the original.)

键是字符串,值是整数 (0/1).

Keys are Strings, Values are Integers (0/1).

我目前使用一个简单的方法:

I currently use a simple way:

newDict = oldDict.copy()

分析我的代码显示复制操作花费了大部分时间.

Profiling my Code shows that the copy operation takes most of the time.

dict.copy() 方法是否有更快的替代方法?什么是最快的?

Are there faster alternatives to the dict.copy() method? What would be fastest?

推荐答案

看C源码 对于 Python dict 操作,您可以看到它们做了一个非常幼稚(但高效)的复制.它本质上归结为对 PyDict_Merge 的调用:

Looking at the C source for the Python dict operations, you can see that they do a pretty naive (but efficient) copy. It essentially boils down to a call to PyDict_Merge:

PyDict_Merge(PyObject *a, PyObject *b, int override)

这会快速检查它们是否是同一个对象以及它们是否有对象.之后,它会对目标 dict 进行一次慷慨的 resize/alloc,然后一个一个地复制元素.我没有看到你比内置的 copy() 快得多.

This does the quick checks for things like if they're the same object and if they've got objects in them. After that it does a generous one-time resize/alloc to the target dict and then copies the elements one by one. I don't see you getting much faster than the built-in copy().

这篇关于在 Python 中复制字典的快速方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)