C/C++
文章平均质量分 77
Liut2016
这个作者很懒,什么都没留下…
展开
-
[leetcode]690. Employee Importance三种解法及性能分析
You are given a data structure of employee information, which includes the employee’s unique id, his importance value and his direct subordinates’ id.For example, employee 1 is the leader of employe...原创 2019-11-21 11:32:12 · 279 阅读 · 0 评论 -
google gflags库在Windows+Visual Studio2017环境下的安装与使用
之前在编写一个具体的程序时,需要通过命令行方式运行,根据输入的参数来决定具体的功能。对argv解析很麻烦,因此使用了google的gflags库,该工具可以方便地实现对于命令行参数的解析。gflags官方的功能介绍 How To Use gflags (formerly Google Commandline Flags)下载gflags的源码:gflags clone得到的gflags-m...原创 2018-07-17 17:18:35 · 4042 阅读 · 3 评论 -
在Visual Studio 2017下实现动态库加载
在开发与测试中,有时需要加载不同的库,如果每次修改源程序就会非常麻烦,但如果指定库函数进行动态加载,则可以不用修改代码就能实现不同库函数的功能。以下是我在Visual Studio 2017环境下实现的动态库加载实验。本文参考例程:https://blog.csdn.net/qq_28249373/article/details/76098914首先我们需要建立DLL工程,生成自己的动态链...原创 2018-07-30 17:54:05 · 3425 阅读 · 0 评论 -
[leetcode] 884. Uncommon Words from Two Sentences
We are given two sentences A and B. (A sentence is a string of space separated words. Each word consists only of lowercase letters.)A word is uncommon if it appears exactly once in one of the sent...原创 2019-05-17 17:35:35 · 159 阅读 · 0 评论 -
[leetcode]日期问题
1154. Day of the YearGiven a string date representing a Gregorian calendar date formatted as YYYY-MM-DD, return the day number of the year.Example 1:Input: date = “2019-01-09”Output: 9Explanat...原创 2019-09-08 16:36:09 · 889 阅读 · 0 评论