自定义博客皮肤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 !

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

原创 29. Divide Two Integers

1.问题描述 Divide two integers without using multiplication, division and mod operator. If it is overflow, return MAX_INT. 2.解题思路 采用二分法,每次让除数以2倍的形式递增,只要递增结果小于被除数,则继续递增,如果递增时超过了,则记住递增前的数,然后用被除数减去

2016-07-20 19:33:51 390

原创 27. Remove Element

1.问题描述 Given an array and a value, remove all instances of that value in place and return the new length. Do not allocate extra space for another array, you must do this in place with constant mem

2016-07-18 20:00:34 258

原创 25. Reverse Nodes in k-Group

1.问题描述 Given a linked list, reverse the nodes of a linked list k at a time and return its modified list. If the number of nodes is not a multiple of k then left-out nodes in the end should rem

2016-07-18 19:12:27 379

原创 23. Merge k Sorted Lists

1.问题描述 Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. 2.解题思路 类似于2路归并法,将K路归并划为2路归并,直到最后得到一个链表,采用递归的方法 3.代码实现 class Solution { public: ListNo

2016-07-13 11:51:09 373

原创 22.Generate Parentheses

1.问题描述 Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: [ "((()))", "(()())", "(())()

2016-07-12 14:23:41 307

原创 Merge Two Sorted Lists

1.问题描述 Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 2.解题思路 合并两个有序的链表,只需要逐一进行比较即可。 1).刚开始通过比较l1和

2016-07-03 15:07:30 312

原创 Valid Parentheses

1.问题描述 Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. The brackets must close in the correct order, "()" and "()[]{}"

2016-07-02 20:09:51 286

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

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关注的人

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