双指针读写数组需要考虑的问题
使用双指针循环读写数值可能会遇到的问题:
- 初始值,边界值问题。
- top=bottom=0
top往后移使用
top = ( top + moveSize ) % buffSize
bottom往后移使用bottom = ( bottom + moveSize ) % buffSize
。
top指向的位置没有数据,bottom指向的位置有数据。
当top==bottom表示没有数据
dataSize = ( top - bottom + buffSize ) % buffSize
- top=-1,bottom=0
top往后移使用
top = ( top + moveSize ) % buffSize
bottom往后移使用bottom = ( bottom + moveSize ) % buffSize
。
没办法表示没有数据的情况。
dataSize = ( top - bottom + 1 + buffSize ) % buffSize