Dockerfile 最佳实践本文是 Docker 官方文档 docs/archive:v1.1 中 Best practices for writing Dockerfiles 的理解和翻译。包含了...
分类:
其他好文 时间:
2016-12-02 16:24:42
阅读次数:
204
题目: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 没事来做 ...
分类:
编程语言 时间:
2016-12-02 03:00:40
阅读次数:
210
He bent over and began scraping together a pile of the white mush. 他弯下腰,开始团起一个白色的雪球。 "I'll see you at lunch, okay?" I kept walking as I spoke. "Once p ...
分类:
其他好文 时间:
2016-11-28 22:54:58
阅读次数:
235
问题: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 官方难度 ...
分类:
其他好文 时间:
2016-11-28 15:31:08
阅读次数:
347
为现有图像处理程序添加读取exif的功能 exif是图片的重要参数,在使用过程中很关键的一点是exif的数据能够和图片一起存在。exif的相关功能在操作系统中就集成了,在csharp中也似乎有了实现。但是使用mfc来实现这个功能,的确费了我的一些时间。下面是我的实现方式。 读取exif,参考了网络资 ...
分类:
其他好文 时间:
2016-11-28 09:34:27
阅读次数:
663
Note: This is an extension of House Robber. After robbing those houses on that street, the thief has found himself a new place for his thievery so tha ...
分类:
其他好文 时间:
2016-11-28 09:09:02
阅读次数:
148
Given a non-empty string check if it can be constructed by taking a substring of it and appending multiple copies of the substring together. You may a ...
分类:
其他好文 时间:
2016-11-27 09:58:57
阅读次数:
356
Given an absolute path for a file (Unix-style), simplify it. For example,path = "/home/", => "/home"path = "/a/./b/../../c/", => "/c" click to show co ...
分类:
其他好文 时间:
2016-11-27 09:50:11
阅读次数:
254
One way to serialize a binary tree is to use pre-order traversal. When we encounter a non-null node, we record the node's value. If it is a null node, ...
分类:
其他好文 时间:
2016-11-25 06:56:48
阅读次数:
158