Comment on Quadsort: a stable non-recursive merge sortparentComments−alexchamberlain6yThis feels a little unfair; the function is invoked the same number of times, but C++ has a mechanism for removing the overhead of calling a function (inlining).−zhangxp19986yI looked at disassembly of generated binary, sure, function calls inside quad sort were also inlined.
Comments
This feels a little unfair; the function is invoked the same number of times, but C++ has a mechanism for removing the overhead of calling a function (inlining).
I looked at disassembly of generated binary, sure, function calls inside quad sort were also inlined.