自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

HuZhenXing

Hire for aptitude and attitude, train for skill !

  • 博客(5)
  • 资源 (16)
  • 收藏
  • 关注

原创 Letter Combinations of a Phone Number

1.问题描述 Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telephone buttons) is given below. In

2016-06-29 15:59:25 325

原创 3Sum Closest

1.问题描述 Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would ha

2016-06-27 23:28:34 353

原创 THREE SUM

3Sum问题Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.Note: The solution set must not contain

2016-06-27 22:21:12 359

原创 Int to Roman

阿拉伯数字转罗马数字(1~3999)思路:直接从个位数开始转起,分别用10,100,1000,10000取余数,不同的余数采用不同的解决办法,最后返回字符串代码class Solution { public: string intToRoman(int num) { int d = 10; int n = num; string rslt(""); while

2016-06-19 23:10:31 230

原创 Roman to Integer

罗马数字转数字,非常简单的语句,直接上代码:class Solution { public: int romanToInt(string s) { auto it = s.begin(); int rslt = 0; while(it!=s.end()) { switch (*it) { case 'I':

2016-06-19 20:42:32 267

cxform-c.dll

将cxform-0.71编译得到的c++dll库,用于不同坐标系之间转换,源代码中的dll库没有接口函数,无法使用,本dll经过VS2010测试,可以正常使用

2017-05-28

LSTM官方训练样本数据imdb.pkl

Theano中LSTM官方教程例子中的数据imdb.pkl

2016-11-04

注册表编辑器

注册表编辑器,支持批量操作,可以批量删除

2016-08-03

qt5.5做的记事本

qt5.5做的记事本,界面完全是手绘,没有UI类,特别适合新手学习,对于Qt,要多多学习没有ui的代码,这样才能快速提高qt的开发水平。

2016-03-20

马周游问题 c++ QT

用分支限界函数实现的马周游,在QT开发平台实现

2015-12-09

c# 采用DirectX9.0 载入3D模型

c#中采用directX9.0载入3D模型,实现需要下载并且安装DirectX9.0SDK,如果不能运行的话,就在工程中手动引用DirectX.dll,DirectX3D.dll,DirectX3DX.dll

2015-05-17

MFC odbc方法连接mysql图文教程

MFC,ODBC方法,连接mysql,图文并茂,包括mysqlworkbench建立数据库,小白也看得懂

2014-03-03

MySQL ODBC 5.1 Driver

连接MYSQL ODBC 方法的驱动器,必备!

2014-03-03

c++词法语法分析

c++ 编写的词法语法分析,绝对给力,不坑爹!

2013-05-28

c++ CMM词法分析器

c++语言编写的 CMM词法分析器,绝对给力,物超所值!

2013-05-28

c++猜数字游戏

c++编写的简单的猜数字游戏,可以用来软件测试

2013-05-28

c#连连看源代码开发

c#连连看源代码。有些小bug,但是不影响

2013-05-28

asp.net入门经典

asp.net入门经典:c#编程篇,不坑爹。

2012-07-07

ssd4 exercise4 答案

ssd4的exercise4的part1的执行程序和part2的UAR报告,本资源不坑爹

2012-04-21

SSD7 全部答案

SSD7 exam答案,exercise答案,quiz答案一应俱全,有各种你想要的,各种满分答案

2012-04-20

SQL语句大全

强大的SQl语句,详细实用,有各个语句的用法以及相应的解释

2012-04-20

空空如也

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

TA关注的人

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