摘要:
install.pm could not copy postgres.exe to ... 错误原因:目标文件夹的父目录不存在 阅读全文
摘要:
错误原因: 方法在还未声明的地方就使用了。由于使用的地方与定义的地方都是在同一个.c文件中,所以没有报未声明的错误。 解决方法: 把实现放到使用的前面,或者在include语句和宏定义后面加上函数声明。 阅读全文
摘要:
解决方法: 在源目录中重新install。 D:\postgresql-9.6.0\src\tools\msvc>install E:\pg_install 阅读全文
摘要:
1. 在MySQL官网 http://dev.mysql.com/downloads/mysql/ 上面下载ZIP安装包(第二个:Windows (x86, 64-bit), ZIP Archive)。 2. 下载完成后解压,将其放到想要安装的目录下。 例如:D:\MySQL5.7\mysql-5. 阅读全文
摘要:
According to the Wikipedia's article: "The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John 阅读全文
摘要:
http://www.th7.cn/Program/IOS/201603/789227.shtml 在 OC 中 init 方法是非常不安全的,没人能够保证 init 只被调用一次,也没有人保证在初始化方法调用以后实例的各个变量都完成初始化,甚至如果在初始化里使用属性进行设置的的话,还可能会造成各种 阅读全文
摘要:
问题: Xcode项目发送网络请求时,报错:“App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be c 阅读全文
摘要:
Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array. For example,Given nums = [0, 1, 阅读全文
摘要:
给定一个整数n,给定一个整数m,将1~n个整数按字典顺序进行排序,返回排序后第m个元素。n最大可为5000000。字典排序的含义为:从最高位开始比较。1开头的数字排在最前面,然后是2开头的数字,然后是3开头的数字……最高位相同的数字,按同样的逻辑比较次高位……以此类推。例:给定整数为n=13,m=5 阅读全文
摘要:
Given an array nums, there is a sliding window of size k which is moving from the very left of the array to the very right. You can only see the knumb 阅读全文