题目: Excel can sort records according to any column. Now you are supposed to imitate this function. Input Specification: Each input file contains one t ...
分类:
其他好文 时间:
2019-02-13 19:34:46
阅读次数:
134
1. Traverse the binary tree, store {x,y,val} for every node in records; 2. Sort the records of {x,y,val} for all nodes by increasing x, decreasing y, ...
分类:
其他好文 时间:
2019-02-12 21:45:45
阅读次数:
133
KEIL编译错误信息表 错误代码及错误信息 错误释义 error 1: Out of memory 内存溢出 error 2: Identifier expected 缺标识符 error 3: Unknown identifier 未定义的标识符 error 4: Duplicate identi ...
分类:
其他好文 时间:
2019-02-11 01:10:59
阅读次数:
161
一.参考文档 官方Docker安装文档:https://docs.docker.com/install/linux/docker-ce/centos 阿里云Docker安装文档:https://yq.aliyun.com/articles/110806 二.安装步骤1.删除已安装的Docker 2. ...
分类:
其他好文 时间:
2019-02-08 18:28:36
阅读次数:
551
传参方法 参考 const char vs. const char function argument [duplicate] https://stackoverflow.com/questions/32096734/const char vs const char function argumen ...
分类:
其他好文 时间:
2019-02-06 09:24:14
阅读次数:
419
好懒again,草稿 用时4ms,内存1M (好高啊魂淡 ...
分类:
其他好文 时间:
2019-02-04 23:16:36
阅读次数:
179
算法描述: Given inorder and postorder traversal of a tree, construct the binary tree. Note:You may assume that duplicates do not exist in the tree. For ex ...
分类:
其他好文 时间:
2019-02-03 10:41:35
阅读次数:
198
Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand. (i.e., [0,1,2,4,5,6,7] might become [4,5,6,7,0,1,2]). Y ...
分类:
其他好文 时间:
2019-02-02 23:28:15
阅读次数:
198
算法描述: Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. Example 1: Examp ...
分类:
其他好文 时间:
2019-02-01 14:12:17
阅读次数:
161
Oracle/PLSQL: WHERE CURRENT OF Statement If you plan on updating or deleting records that have been referenced by a Select For Update statement, you c ...
分类:
数据库 时间:
2019-01-31 16:43:14
阅读次数:
179