题目标签:String 利用left, right 两个pointers, 从左右开始 互换 字母。如果遇到的不是字母,那么继续移动到下一个。 Java Solution: Runtime beats 29.87% 完成日期:12/08/2018 关键点:two pointers 参考资料:N/A ...
分类:
其他好文 时间:
2018-12-09 10:41:57
阅读次数:
172
CHAPTER 2 ■ TABLES AND INDEXES: INTERNAL STRUCTURE AND ACCESS METHODS 第2章 表格和索引:内部结构和访问方式 Figure 2-4. Forwarding pointers and I/O: Reading data when f ...
分类:
其他好文 时间:
2018-12-06 01:25:20
阅读次数:
204
Working with Excel Files in Python from: http://www.python excel.org/ This site contains pointers to the best information available about working with ...
分类:
编程语言 时间:
2018-11-24 14:20:27
阅读次数:
173
Given a binary tree Populate each next pointer to point to its next right node. If there is no next right node, the next pointer should be set to NULL ...
分类:
其他好文 时间:
2018-11-22 23:03:13
阅读次数:
275
莫队实际很简(du)单(liu) 依照某位dalao的说法,就是两只小手(two pointers)瞎跳 莫队 我们以 "Luogu P3901 数列找不同" 为例讲一下静态莫队 这道题是个绿题,因为数据比较弱,但真是一道良心的莫队练手题 莫队是由前国家队队长莫涛发明的 莫队算法的精髓就是通过合理地 ...
分类:
其他好文 时间:
2018-11-20 21:45:54
阅读次数:
231
《C和指针 POINTERS ON C》提供与C语言编程相关的全面资源和深入讨论。本书通过对指针的基础知识和高 级特性的探讨,帮助程序员把指针的强大功能融入到自己的程序中去。 全书共18章,覆盖了数据、语句、操作符和表达式、指针、函数、数组、字符串、结构和联合等几乎所有重要的C编程话题。书中给出了很 ...
分类:
编程语言 时间:
2018-11-18 23:48:31
阅读次数:
322
https://leetcode.com/tag/two-pointers/ ...
分类:
其他好文 时间:
2018-11-01 11:32:14
阅读次数:
150
Convert a BST to a sorted circular doubly-linked list in-place. Think of the left and right pointers as synonymous to the previous and next pointers i ...
分类:
其他好文 时间:
2018-10-18 10:57:59
阅读次数:
180
题意 给定一个包含$n$个数的序列$a$,在其中任选若干个数,使得他们的和对$m$取模后最大。($n\leq 35$) 题解 显然,$2^n$的暴枚是不现实的...,于是我们想到了折半枚举,分成两部分暴枚,然后考虑合并,合并的时候用two pointers思想扫一遍就行了。 其实这是一道折半枚举+T ...
分类:
其他好文 时间:
2018-10-16 21:59:40
阅读次数:
237
two pointers练习题。 这道题求的是一个最短的区间长度,满足其中所有的数字都出现。 暴力的做法是两次枚举,复杂度$O(n^2)$。 更优美的是尺取法,英文名叫two pointers。(两个指针。。。) 算法大概的过程是这样的: 其实真的是很优美的,代码也很短。 希望我能真的学会吧。。。 ...
分类:
其他好文 时间:
2018-10-13 02:36:11
阅读次数:
116