And*_*anu 8 c complexity-theory standard-library
这可能是一个愚蠢的问题,但我想计算一个算法的复杂性,我不确定memmove()函数要考虑的复杂性.
你能帮忙/解释一下吗?
void * memmove ( void * destination, const void * source, size_t num );
Run Code Online (Sandbox Code Playgroud)
复杂度O(num)或O(1)也是如此.我想这是O(num),但我不确定我现在缺乏对引擎盖下发生的事情的理解.
ang*_*son 11
由于memmove与需要移动的字节数成正比增加的运行时间,因此它是O(n).