自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Yvan Jiang的专栏

CS、CV、ML

  • 博客(11)
  • 资源 (23)
  • 收藏
  • 关注

原创 Leetcode Balanced Binary Tree

Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never diffe

2015-07-31 10:06:24 296

原创 Leetcode Next Permutation

Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers. If such arrangement is not possible, it must rearrange it as the lowest possible

2015-07-25 12:40:34 259

原创 Leetcode Delete Node in a Linked List

Write a function to delete a node (except the tail) in a singly linked list, given only access to that node. Supposed the linked list is 1 -> 2 -> 3 -> 4 and you are given the third node with v

2015-07-21 14:20:09 285

原创 面试题总结8

1、赋值表达式的逻辑返回值等于表达式的最终值。 m=1 if(m=1) cout 条件语句是成立的。

2015-07-20 15:34:17 204

原创 Leetcode Subsets

Given a set of distinct integers, nums, return all possible subsets. Note: Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets. For

2015-07-17 10:13:20 287

原创 Leetcode Sum Root to Leaf Numbers

Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An example is the root-to-leaf path 1->2->3 which represents the number 123. Find the tota

2015-07-15 16:58:03 247

原创 Leetcode Implement Queue using Stacks

Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue.pop() -- Removes the element from in front of queue.peek() -- Get the front element.

2015-07-15 16:34:00 286

原创 Leetcode Implement Stack using Queues

Implement the following operations of a stack using queues. push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top() -- Get the top element.empty() -- Return whet

2015-07-13 17:21:42 358

原创 面试题总结7

Linux系统操作总结: 1、!!是什么操作? 执行上一次命令操作。 2、文件权限 文件权限分为四段表示,文件类型--拥有者权限--所在组权限--其他用户权限 文件类型有:d:文件夹,l:链接文件,b:里面可供存储周边设备,c:里面为一次性读取装置 权限:rwx,用二进制表示111 3、

2015-07-13 14:27:14 302

原创 MATLAB 复制文件

RPATH_SCALE1_IMG = 'F:\background\images'; RPATH_SCALE2_IMG = 'F:\background\sampleimage'; RPATH_SCALE3_IMG = 'F:\background\sampleimage3'; RPATH_SCALE1_LAB = 'F:\background\label'; RPATH_SCALE2_LAB =

2015-07-12 18:16:25 711

原创 Leetcode Summary Ranges

Given a sorted integer array without duplicates, return the summary of its ranges. For example, given [0,1,2,4,5,7], return ["0->2","4->5","7"]. 从第一个元素开始,找到连续的子序列,保存在string类型的变量里。 class Solution

2015-07-10 15:02:45 307

基于zlib库实现简单文件及文件夹的压缩解压缩功能

//add file void add_file_to_zip_arrary(std::string file); void add_directory_to_zip_arrary(std::string directory); //zip void run_zip_arrary(const char * dest_zip_path); void run_file_zip(std::string file, const char * dest_zip_path); void run_dest_zip(std::string dest_floder_path, const char * dest_zip_path);

2022-04-28

threadPool.rar

提供c++11线程池实现源码,以及测试示例。适合c++相关的开发者和c++线程池开发者。vs2017下开发,跨平台适用Windows和Linux系统平台。

2021-04-12

shell脚本学习.md

编译型语言的优点是执行速度快、对硬件要求低、保密性好,适合开发操作系统、大型应用程序、数据库等。 脚本语言的优点是使用灵活、部署容易、跨平台性好,非常适合Web开发以及小工具的制作。 Shell 就是一种脚本语言,我们编写完源码后不用编译,直接运行源码即可。

2020-11-20

msdn gdi+文档.pdf

Windows GDI+ is the portion of the Windows XP operating system or Windows Server 2003 operating system that provides two-dimensional vector graphics, imaging, and typography. GDI+ improves on Windows Graphics Device Interface (GDI) (the graphics device interface included with earlier versions of Win

2020-08-31

InjectDllTool.exe

代码参考网上,最后做个小工具可以加载dll并注入到目标进程。64位应用可以导入自己的dll注入到目标进程,实现挂钩,同时可以卸载导入的dll

2020-08-04

GetSoftInfo.rar

windows系统安装的软件在注册表中有记录,路径为:注册表根句柄KEY_LOCAL_MACHINE,路径为"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall",涉及到32位应用和64位应用,如果是64位系统,32位的应用则存放在"Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall",64位应用则存放在"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall",如果是32位系统,只能安装32位应用,存放在"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall"

2020-07-09

zstd解压缩库.rar

zstd是Facebook在2016年开源的新无损压缩算法,附件是已编译的32位和64位静态库,头文件有c接口介绍,在vs工程中选择配置属性-c\c++ - 代码生成-运行库-多线程调试/MTd

2020-06-15

transdataexe.rar

此附件是应用程序与驱动交互代码示例,编写了缓冲内存模式和直接内存模式,开发环境vs2017+wdk10,仅供参考,有需要的可以下载学习。

2019-12-10

QNX_Neutrino_RTOS_C_Library_Reference.pdf

附件是qnx c语言库接口说明文档,里面讲解了所有的接口函数,以及参数,使用方法等等,欢迎下载使用。

2019-11-20

libtorrent1.2dll 32 and 64.rar

附件是libtorrent1.2版本编译好的dll和lib文件,以及bt客户端依赖的boost1.7版本库,都是最新版,分别编译了64位和32位,有需要的可以下载使用,文件列表如下: ​ 32位torrent客户端程序 依赖的lib文件:boost_system-vc141-mt-gd-x32-1_70.lib libboost_date_time-vc141-mt-gd-x32-1_70.lib(MD)libboost_date_time-vc141-mt-sgd-x32-1_70.lib(MT) torrent-rasterbar.lib (32) **64位torrent客户端程序** 依赖的lib文件:boost_system-vc141-mt-gd-x64-1_70.lib libboost_date_time-vc141-mt-gd-x64-1_70.lib (MD) libboost_date_time-vc141-mt-sgd-x64-1_70.lib (MT) torrent-rasterbar.lib (64)

2019-07-05

软件注册码生成以及验证方法(duilib界面)

软件注册码生成以及验证, 使用duilib界面库开发的界面,代码讲解如何生成注册码,以及如何验证注册码的正确性,感兴趣的同学可以下载使用demo

2018-09-11

基于tensorflow实现猫狗识别代码(CNN)

通过TensorFlow搭建卷积神经网络实现猫狗识别代码,训练和测试代码完整,下载之后可以直接运行测试打码,运行环境在Linux下,需要把代码中的路径修改为本机实际路径

2018-08-17

卷积神经网络MNIST代码及测试数据

博客:卷积神经网络之手写数字识别应用MNISTCNN https://blog.csdn.net/jiangyingfeng/article/details/81031401 对应的实现代码

2018-07-13

CEdit控件重写类CEditList,输入自动提示匹配内容

CEdit控件重写类CEditList,输入自动提示匹配内容,博客链接https://blog.csdn.net/jiangyingfeng/article/details/80454180

2018-05-25

duilib界面库,库ListCtrl可以添加checkbox

duilib界面库,库ListCtrl可以添加checkbox,可以任意添加各种控件,希望可以帮助别人

2018-01-31

网口通信客户端工具

MFC开发的网口通信工具,有详尽的通信日志记录,希望可以帮助别人,使用过程如果有问题可以提问

2018-01-31

串口通信收发调试工具

自己做的串口通信工工具,希望能够帮助别人,使用过程如果遇到问题可以提问。

2018-01-31

duilib与MFC结合做的软件界面DEMO

网上duilib相关学习资源并不多,希望把自己做的分享出去,这个DEMO是在MFC对话框程序下使用DUILIB界面,工程在VS2005及以上版本都可以编译运行

2018-01-26

串口通信助手工具

设置接收线程,接收串口数据,很好的资源,希望可以帮到学习者

2018-01-26

SkinUI界面库开发

SkinUI界面库开发

2017-04-17

Linux下的C编程基础

Linux下的C编程基础,教你在linux下编程,调试程序,写makefile文件

2014-03-01

很不错的汇编程序设计,看了你就知道了

很不错的汇编程序设计,看了你就知道了,绝对震惊!!!!!!!!!!!!!!!!!!!!!

2011-05-31

世界编程大赛顶尖作品 看了绝对震撼

世界编程大赛顶尖作品,看了之后你绝对震惊,都是牛人啊!!!!!!!!!!!!

2011-05-31

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除