Switch optimization for many cases guarantees equal access time for any case? ( C++ )

前端 未结 6 1342
礼貌的吻别
礼貌的吻别 2020-12-31 19:29

I\'ve seen answers here for specific languages, about switches with more than 5 cases being optimized with jump tables to guarantee constant access time for any case.
Is

6条回答
  •  爱一瞬间的悲伤
    2020-12-31 20:02

    The standard doesn't guarantee anything about how the switch statement will be implemented. I've never seen a compiler produce a hash table, though quite a few will produce a jump table. Unless my memory is working even worse than usual, both VS and gcc can produce jump tables when the cases are sufficiently dense (for different values of "sufficiently"). Unfortunately, it's almost impossible to say (or necessarily even figure out) when sorting by frequency of occurrence will help -- it's different not only between compilers, but even between different versions of the same compiler.

提交回复
热议问题