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

  • Unity Game Optimization
  • Dr. Davide Aversa Chris Dickinson
  • 319字
  • 2021-06-24 12:13:03

Using appropriate data structures

C# offers many different data structures in the System.Collections namespace and we shouldn't become too accustomed to 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 it's 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 that 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 to iterate over it fully.

In these cases, it is often better to store data in both a list and a dictionary to better support this behavior. 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 of iteration on the list (which tends to happen way more often) will be a stark contrast compared to iterating over a dictionary.

主站蜘蛛池模板: 上栗县| 织金县| 安阳县| 辽宁省| 石门县| 永善县| 河西区| 图们市| 衡山县| 保靖县| 儋州市| 九寨沟县| 宜良县| 潼南县| 墨竹工卡县| 安新县| 丰都县| 曲阳县| 盐边县| 桂平市| 罗源县| 油尖旺区| 喀喇| 阜新| 招远市| 全州县| 外汇| 增城市| 华坪县| 灵寿县| 内江市| 花莲市| 枝江市| 高邑县| 永嘉县| 宜宾市| 临邑县| 右玉县| 万州区| 类乌齐县| 岳阳市|