How would you make this switch statement as fast as possible?

后端 未结 21 2225
别那么骄傲
别那么骄傲 2021-01-30 04:17

2009-12-04 UPDATE: For profiling results on a number of the suggestions posted here, see below!


The Question

Consider the following very

21条回答
  •  独厮守ぢ
    2021-01-30 04:49

    Put the cases in a sorted structure with non linear access (like a hash table). The switch that you have will have a linear time.

提交回复
热议问题