摘要:
原题链接: 368. Largest Divisible Subset Given a set of distinct positive integers nums, return the largest subset answer such that every pair (answer[i], 阅读全文
摘要:
获取macos版的mysql可执行文件包 执行如下命令 cd /usr/local/src # for Apple Chip wget https://cdn.mysql.com//Downloads/MySQL-8.0/mysql-8.0.27-macos11-arm64.tar.gz # for 阅读全文
摘要:
今天在公司用 golang 写了一个工具程序,用到了代码仓库中的一个读取 k-v 数据库的接口,运行,出现panic: panic: runtime error: cgo argument has Go pointer to Go pointer ...... 这个接口线上模块也在用,应该是没问题的 阅读全文
摘要:
使用 Visual Studio 2015 进行程序开发工作时,如果编译的是来自于Linux平台的源文件,该源文件可能会包含头文件 uninstd.h,这样会产生报错信息: "fatal error C1083: Cannot open include file: 'unistd.h': No su 阅读全文
摘要:
同样的程序代码,使用Visual Studio 进行编译,当目标平台分别为x86或x64环境时,其编译结果是不同的。在x86环境下,指针都是4个字节的;而在x64环境下,指针都是8字节的。测试代码如下: include using namespace std; int main(int argc, 阅读全文