memcpy的速度測試

想把一組char a[4096]的數組拷貝到short b[6][256]中,嘗試過用循環移位的方式,還用中間變量short c[2048]的方式。得出的結論: 1. 移位方式效率最低 2. 借用中間變量,變量若是是局部棧中,那麼速度比全局的中間變量速度快,缺點是怕棧溢出。 驗證代碼以下:web //file name testcpyspeed.c #include<stdio.h> #inclu
相關文章
相關標籤/搜索