最近在看APUE附带的源码时,看到它的错误处理文件中用到了可变参数列表(如下),正好最近老是看到这几个函数在眼前晃悠,所以就做个了断吧。哈哈。#include "apue.h"#include /* for definition of errno */#include /* ISO C ...
分类:
编程语言 时间:
2014-10-13 22:34:17
阅读次数:
269
1 /** 2 * Definition for binary tree with next pointer. 3 * public class TreeLinkNode { 4 * int val; 5 * TreeLinkNode left, right, next; ...
分类:
其他好文 时间:
2014-10-13 14:23:19
阅读次数:
134
1 /** 2 * Definition for singly-linked list. 3 * public class ListNode { 4 * int val; 5 * ListNode next; 6 * ListNode(int x) { 7 * ...
分类:
其他好文 时间:
2014-10-13 13:30:09
阅读次数:
118
Given a sorted linked list, delete all duplicates such that each element appear only once.
For example,
Given 1->1->2, return 1->2.
Given 1->1->2->3->3, return 1->2->3.
/**
* Definition for s...
分类:
其他好文 时间:
2014-10-12 13:59:18
阅读次数:
182
Given a list, rotate the list to the right by k places, where k is non-negative.
For example:
Given 1->2->3->4->5->NULL and k = 2,
return 4->5->1->2->3->NULL.
Solution:
/**
* Definition for ...
分类:
其他好文 时间:
2014-10-12 13:33:18
阅读次数:
161
/** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; ...
分类:
其他好文 时间:
2014-10-12 07:47:07
阅读次数:
168
在使用 MapResourceManager, Map进行 地图显示 时, 在 Map Resource Definition 的 type 为 ArcGIS Server Local时概述. 1,打开 MapResourceManager 的 Edit Resources后,将弹出如下图所示...
分类:
其他好文 时间:
2014-10-12 03:12:07
阅读次数:
121
Definition of Inversion: Let (A[0], A[1] ... A[n], n A[j], then the pair (i, j) is called inversion of A.Example:Count(Inversion({3, 1, 2})) = Count(....
分类:
其他好文 时间:
2014-10-10 23:23:44
阅读次数:
193
# Definition for singly-linked list.class ListNode: def __init__(self, x): self.val = x self.next = Noneclass Solution: # @para...
分类:
其他好文 时间:
2014-10-10 19:36:04
阅读次数:
167
select a.name,a.[type],b.[definition] from sys.all_objects a,sys.sql_modules b where a.is_ms_shipped=0 and a.object_id = b.object_id--and a.[type] ='V...
分类:
数据库 时间:
2014-10-09 14:42:37
阅读次数:
294