leetcode总结4 -- 关于two pointers两个容易考的题目

Remove Element

http://blog.csdn.net/xyqzki/article/details/50154553

用数组尾部的index来接收the given element. 这里不用保持relative order

Move Zeros

http://blog.csdn.net/xyqzki/article/details/50154157

可以看成上面题目的翻版,从数组头部开始接收非0的元素。因为这里要保持relative order

Remove Duplicates from Sorted Array

技巧同上面类似
http://blog.csdn.net/xyqzki/article/details/50233931

你可能感兴趣的:(leetcode总结4 -- 关于two pointers两个容易考的题目)