官术网_书友最值得收藏!

Use appropriate data structures

C# offers many different data structures in the System.Collections namespace and we shouldn't become too accustomed with using the same ones over and over again. A common performance problem in software development is making use of an inappropriate data structure for the problem we're trying to solve simply because its convenient. The two most commonly used are perhaps lists (List<T>), and dictionaries (Dictionary<K,V>).

If we want to iterate through a set of objects then a list is preferred, since it is effectively a dynamic array where the objects and/or references reside next to one another in memory, and therefore iteration causes minimal cache misses. Dictionaries are best used if two objects are associated with one-another and we wish to acquire, insert, or remove these associations quickly. For example, we might associate a level number with a particular Scene file, or an enum representing different body parts on a character, with Collider Components for those body parts.

However, it's fairly common where we want a data structure that handles both scenarios; we want to quickly figure out which object maps to another, while also being able to iterate through the group. Typically, the developer of this system will use a dictionary, and then iterate over it. However, this process is unfortunately very slow compared to iterating over a list since it must check every potential hash in the dictionary in order to iterate over it fully.

In these cases, its often better to store data in both a list and a dictionary to better support this behaviour. This will cost additional memory overhead to maintain multiple data structures, and insertion and deletion will require adding and removing objects from both data structures each time, but the benefits on iteration on the list (which tend to happen way more often) will be a stark contrast compared to iterating over a dictionary.

主站蜘蛛池模板: 涟水县| 老河口市| 策勒县| 夹江县| 西乌珠穆沁旗| 台北市| 巨野县| 黄龙县| 个旧市| 边坝县| 汉源县| 哈巴河县| 托里县| 潢川县| 广河县| 鄯善县| 利津县| 罗定市| 盐边县| 怀来县| 桑植县| 孝义市| 宁都县| 牙克石市| 汾西县| 水城县| 斗六市| 沧州市| 龙泉市| 资兴市| 高要市| 巴中市| 攀枝花市| 大埔区| 奉节县| 梧州市| 双牌县| 普陀区| 靖安县| 信丰县| 镇江市|