引言:lambda表达式在STL应用中可以让我们起到十分便捷的功能,我们看下微软的解释。When you write code, you probably use function pointers and function objects to solve problems and perform...
分类:
编程语言 时间:
2015-07-15 14:53:46
阅读次数:
194
part one:这两个名字不同当然所代表的意思也就不同。我刚开始看到这就吓到了,主要是中文太博大精深了,整这样的简称太专业了,把人都绕晕了。从英文解释或中文全称看就比较容易理解。指针数组:array of pointers,即用于存储指针的数组,也就是数组元素都是指针数组指针:a pointer ...
分类:
编程语言 时间:
2015-07-14 17:09:25
阅读次数:
169
题目链接:https://leetcode.com/problems/remove-nth-node-from-end-of-list/
Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: ...
分类:
其他好文 时间:
2015-07-14 15:50:20
阅读次数:
122
题目链接:https://leetcode.com/problems/4sum/
依次将问题转化为3Sum、2Sum问题, 后两个问题解法见关联博文。
/**
* Return an array of arrays of size *returnSize.
* Note: The returned array must be malloced, assume caller calls fr...
分类:
其他好文 时间:
2015-07-14 13:43:05
阅读次数:
109
第十二章 利用结构和指针这章就是链表。先单链表,后双向链表。总结:单链表是一种使用指针来存储值的数据结构。链表中的每一个节点包括一个字段,用于指向链表的下一个节点。有一个独立的根指针指向链表的第1个节点。单链表仅仅能从一个方向遍历。怎样insert单链表:1、新节点的link字段必须设置为指向它的后...
分类:
其他好文 时间:
2015-07-13 21:59:51
阅读次数:
84
75 Sort Colors链接:https://leetcode.com/tag/two-pointers/
问题描述:
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in th...
分类:
其他好文 时间:
2015-07-13 12:14:35
阅读次数:
119
The problem becomes more difficult once the binary tree is not perfect. The idea is still similar to use a level-order traversal. Note that we do not ...
分类:
其他好文 时间:
2015-07-11 20:02:27
阅读次数:
132
https://leetcode.com/problems/populating-next-right-pointers-in-each-node/ 1 /** 2 * Definition for binary tree with next pointer. 3 * struct TreeLi.....
分类:
其他好文 时间:
2015-07-09 12:46:18
阅读次数:
91
This is a classic problem of linked list. You may solve it using two pointers. The tricky part lies in the head pointer may also be the one that is re...
分类:
其他好文 时间:
2015-07-07 22:25:50
阅读次数:
133
Go语言是一门开源的编程语言,它的设计目标是能够打造编译简单、执行速度快和可靠的软件。
Go by Example是Go语言的动手学习指南,它的每个例子都有适当的注释。
这是第十七章节,关于指针( Pointers)...
分类:
其他好文 时间:
2015-06-28 18:57:16
阅读次数:
144