摘要: (转载)浅谈软件开发人员的职业发展规划 进取型:不甘于现状,刻苦学习,出现任何新机会都要去争取,渴望创业。 自由型:不受束缚,希望有一个空间供他们发挥能力,最好是不用上班,在家里做SOHO一族。 安全型:寻求工作上的稳定,愿意做重复性、无压力、不加班的工作,并可以一直维持下去。 平衡型:工作很认真, 阅读全文
posted @ 2018-08-12 15:49 ht-beyond 阅读(859) 评论(0) 推荐(0) 编辑
摘要: 马上要开始校招了,这些基本的数据结构很有必要掌握。 自己基本都忘了,所以花点时间自己重新温习下。 阅读全文
posted @ 2016-07-20 18:50 ht-beyond 阅读(910) 评论(0) 推荐(0) 编辑
摘要: // 文件和目录操作 #ifndef _FILE_DIR_H_ #define _FILE_DIR_H_ #include #include #include void mkDir(const std::string &dirPath); int removeDir(const std::string &path); bool checkExist(const std::string... 阅读全文
posted @ 2016-07-20 09:20 ht-beyond 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 实习期间开始使用WPF,记录一点东西,没什么技术含量。 // 计时器 System.Windows.Threading.DispatcherTimer ShowTimer; ShowTimer = new System.Windows.Threading.DispatcherTimer(); Sho 阅读全文
posted @ 2016-05-07 16:24 ht-beyond 阅读(767) 评论(0) 推荐(0) 编辑
摘要: 参考:http://www.codeproject.com/Tips/732196/Heap-Data-Structure-and-Heap-Sort#xx4775794xx 阅读全文
posted @ 2016-04-27 20:14 ht-beyond 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 FFmpeg环境配置: 3 配置包含目录,库目录,附加依赖性 4 添加dll到工程debug文件下 5 */ 6 7 /* 8 libavcodec encoding/decoding library 9 libavfilter graph-based frame editing li 阅读全文
posted @ 2016-03-11 15:00 ht-beyond 阅读(6890) 评论(0) 推荐(1) 编辑
摘要: 根据txt文件中指定的文件名进行文件分类: // 根据txt文件中指定的文件名进行文件分类 #include <stdio.h> #include <stdlib.h> #include <malloc.h> #include <windows.h> #include <io.h> #include 阅读全文
posted @ 2016-03-05 17:32 ht-beyond 阅读(991) 评论(0) 推荐(0) 编辑
摘要: 简单记录下。 阅读全文
posted @ 2016-03-05 17:28 ht-beyond 阅读(3075) 评论(0) 推荐(0) 编辑
摘要: FFmpeg视频文件解码为YUV数据: // ffmpeg_test // 2016.2.29 /* FFmpeg环境配置: 配置包含目录,库目录,附加依赖性 添加dll到工程debug文件下 */ /* libavcodec encoding/decoding library libavfilte 阅读全文
posted @ 2016-02-29 16:55 ht-beyond 阅读(3435) 评论(0) 推荐(0) 编辑
摘要: FFmpeg解封装音视频分离: 参考:http://blog.csdn.net/leixiaohua1020/article/details/39802819 // ffmpeg_test // 2016.2.28 /* FFmpeg环境配置: 配置包含目录,库目录,附加依赖性 添加dll到工程de 阅读全文
posted @ 2016-02-28 21:23 ht-beyond 阅读(3760) 评论(0) 推荐(1) 编辑
摘要: // FFMPEG关键结构体:// 转载 http://blog.csdn.net/leixiaohua1020/article/details/14214577// 2016.2.26 AVFrame(位于avcodec.h)结构体一般用于存储原始数据。====================== 阅读全文
posted @ 2016-02-28 21:02 ht-beyond 阅读(628) 评论(0) 推荐(0) 编辑
摘要: 记录下项目中的一点东西。 1 //======================================================================================= 2 // ParkingSystem.cpp 3 // 4 //============= 阅读全文
posted @ 2016-02-27 15:13 ht-beyond 阅读(549) 评论(0) 推荐(0) 编辑
摘要: 神经网络入门连载:http://blog.csdn.net/zzwu/article/category/243067 阅读全文
posted @ 2016-02-22 13:22 ht-beyond 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 程序员面试常见问题-整理-12016.2.19 by Huangtao 以下是海康威视应用软件开发工程师笔试题涉及到的一些知识:=====================================================================Sizeof(结构体):字节对齐的 阅读全文
posted @ 2016-02-19 16:41 ht-beyond 阅读(463) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://www.cnblogs.com/ello/archive/2012/04/28/2475419.html 阅读全文
posted @ 2016-02-14 17:54 ht-beyond 阅读(183) 评论(0) 推荐(0) 编辑