自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

IronYoung_不惧未来

The minute you think of giving up, think of the reason why you hold on so long.

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

原创 【LeetCode从零单刷】Permutations

LeetCode 从零单刷

2015-10-13 09:39:04 703

原创 【LeetCode从零单刷】Swap Nodes in Pairs

LeetCode从零单刷

2015-10-11 10:33:38 759

原创 【LeetCode从零单刷】Ugly Number I, II & Super Ugly Number

LeetCode从零单刷

2015-10-11 10:17:06 4724

原创 Andrew Ng Machine Learning 专题【K-Means】

此文是斯坦福大学,机器学习界 superstar — Andrew Ng 所开设的 Coursera 课程:Machine Learning 的课程笔记。力求简洁,仅代表本人观点,不足之处希望大家探讨。 课程网址:https://www.coursera.org/learn/machine-learning/home/welcomeWeek 1: Introduction 笔记:http://bl

2015-10-10 20:57:27 2442

原创 【LeetCode从零单刷】Find the Duplicate Number

题目:Given an array nums containing n + 1 integers where each integer is between 1 and n (inclusive), prove that at least one duplicate number must exist. Assume that there is only one duplicate n

2015-10-10 09:51:21 3309

原创 【LeetCode从零单刷】Majority Element

题目:Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times.

2015-10-10 09:10:59 1157

原创 【LeetCode从零单刷】Move Zeroes

题目:Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements.For example, given nums = [0, 1, 0, 3, 12], after ca

2015-10-10 08:50:57 1313

原创 【LeetCode从零单刷】Sort Colors

题目:Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue.Here, we will use the intege

2015-09-21 19:38:17 729

原创 【LeetCode从零单刷】Generate Parentheses

菜鸡从零单刷 LeetCode 系列!

2015-09-18 21:05:55 1004

原创 【LeetCode从零单刷】Reverse Linked List

题目:Reverse a singly linked list.解答:反转单链表。很常见的一道题目。思路暂时想到两种,一种是浪费一些空间,重新构造一个反转的链表,代码是这种;第二种是每次单独保存原链表节点,使得其 next 指针指向原先的上一个节点。主要我想说的是代码上的问题:关于 struct, class 类型的指针。使用指针之前,切记要分配内存空间!!

2015-09-16 21:37:21 658

原创 【LeetCode从零单刷】Binary Tree Postorder Traversal

从今天起,模仿《从零单排》系列,菜鸡单刷LeetCode!

2015-09-16 14:07:49 676

原创 Andrew Ng Machine Learning 专题【Machine Learning Advice】

此文是斯坦福大学,机器学习界 superstar — Andrew Ng 所开设的 Coursera 课程:Machine Learning 的课程笔记。力求简洁,仅代表本人观点,不足之处希望大家探讨。 课程网址:https://www.coursera.org/learn/machine-learning/home/welcome

2015-09-16 13:41:03 1630

原创 【LeetCode从零单刷】Add Digits

题目:Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.For example:Given num = 38, the process is like: 3 + 8 = 11, 1 + 1 = 2. Since 2 h

2015-09-15 09:18:57 690

原创 【LeetCode从零单刷】Gray Code

题目:The gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integer n representing the total number of bits in the code, print the sequenc

2015-09-13 22:18:12 735

原创 【LeetCode从零单刷】Lowest Common Ancestor of a Binary Search Tree

题目:Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BST.According to the definition of LCA on Wikipedia: “The lowest common ancestor is def

2015-09-13 22:01:03 708

原创 【LeetCode从零单刷】Convert Sorted Array to Binary Search Tree

题目:Given an array where elements are sorted in ascending order, convert it to a height balanced BST.解答:解决树的问题,一般都会涉及到递归。class Solution {public: TreeNode* sortedArrayToBST(vector& nums) {

2015-09-13 21:48:41 561

原创 【LeetCode从零单刷】Single Number III

题目:Given an array of numbers nums, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the two elements that appear only once.For example:Given n

2015-09-13 21:29:19 670

原创 【LeetCode从零单刷】Valid Anagram

题目:Given two strings s and t, write a function to determine if t is an anagram of s.For example,s = "anagram", t = "nagaram", return true.s = "rat", t = "car", return false.解答:不要被各种类型的

2015-09-13 19:45:59 617

原创 Andrew Ng Machine Learning 专题【Neural Networks】下

此文是斯坦福大学,机器学习界 superstar — Andrew Ng 所开设的 Coursera 课程:Machine Learning 的课程笔记。力求简洁,仅代表本人观点,不足之处希望大家探讨。 课程网址:https://www.coursera.org/learn/machine-learning/home/welcomeWeek 1: Introduction 笔记:http://bl

2015-09-13 11:36:57 3190 1

原创 Andrew Ng Machine Learning 专题【Neural Networks】上

此文是斯坦福大学,机器学习界 superstar — Andrew Ng 所开设的 Coursera 课程:Machine Learning 的课程笔记。力求简洁,仅代表本人观点,不足之处希望大家探讨。 课程网址:https://www.coursera.org/learn/machine-learning/home/welcome

2015-09-01 09:07:47 3076 2

原创 Andrew Ng Machine Learning 专题【Logistic Regression & Regularization】

此文是斯坦福大学,机器学习界 superstar — Andrew Ng 所开设的 Coursera 课程:Machine Learning 的课程笔记。力求简洁,仅代表本人观点,不足之处希望大家探讨。

2015-08-10 22:53:04 3123

原创 Andrew Ng Machine Learning 专题【Linear Regression】

此文是斯坦福大学,机器学习界 superstar — Andrew Ng 所开设的 Coursera 课程:Machine Learning 的课程笔记。力求简洁,仅代表本人观点,不足之处希望大家探讨。 课程网址:https://www.coursera.org/learn/machine-learning/home/welcome

2015-07-29 17:38:34 3920

原创 Andrew Ng Machine Learning 专题【Introduction】

此文是斯坦福大学,机器学习界 superstar — Andrew Ng 所开设的 Coursera 课程:Machine Learning 的课程笔记。力求简洁,仅代表本人观点,不足之处希望大家探讨。 课程网址:https://www.coursera.org/learn/machine-learning/home/welcome

2015-07-29 15:01:02 3357 2

原创 【LeetCode从零单刷】Remove Duplicates from Sorted List

菜鸡从零单刷 LeetCode 系列!

2015-05-13 11:42:02 1073

原创 【LeetCode从零单刷】Maximum Subarray

菜鸡从零单刷 LeetCode 系列!

2015-05-13 11:34:31 803

原创 【LeetCode从零单刷】Happy Number

菜鸡从零单刷 LeetCode 系列!

2015-05-13 11:24:26 896

原创 【LeetCode从零单刷】Single Number II

菜鸡从零单刷 LeetCode 系列!

2015-05-13 11:13:15 769

原创 【LeetCode从零单刷】Integer to Roman

菜鸡从零单刷 LeetCode 系列!

2015-05-13 10:48:06 948

原创 【hdoj 1007】最近点对

hdoj 1007 最近点对

2015-05-01 17:44:20 1537

原创 【hdoj 1002】大数加法

hdoj 1002 大数加法

2015-05-01 16:44:41 2146

原创 【hdoj 1005】有限状态机

hdoj 1005 有限状态机

2015-05-01 16:33:07 1249

原创 【LeetCode从零单刷】Roman to Integer

菜鸡从零单刷 LeetCode 系列!

2015-04-23 19:26:10 975

原创 【LeetCode从零单刷】Search Insert Position

菜鸡从零单刷 LeetCode 系列!

2015-04-23 19:17:27 855

原创 【LeetCode从零单刷】N-Queens II

菜鸡从零单刷 LeetCode 系列!

2015-04-23 19:08:08 1139

原创 【LeetCode从零单刷】Binary Tree Inorder Traversal

菜鸡从零单刷 LeetCode 系列!

2015-04-16 13:06:28 878

原创 【LeetCode从零单刷】Linked List Cycle I & II

菜鸡从零单刷 LeetCode 系列

2015-04-13 09:42:34 1021 2

原创 【LeetCode从零单刷】Populating Next Right Pointers in Each Node I & II

菜鸡从零单刷 LeetCode 系列

2015-04-12 23:34:01 936

原创 【LeetCode从零单刷】Binary Tree Preorder Traversal

菜鸡从零单刷 LeetCode 系列!

2015-04-12 23:17:46 706

原创 【LeetCode从零单刷】Excel Sheet Column Number

菜鸡从零单刷 LeetCode 系列!

2015-04-12 22:38:42 895

原创 【LeetCode从零单刷】Unique Binary Search Trees I & II

菜鸡从零单刷 LeetCode 系列!

2015-04-08 12:01:04 741

图像处理标准测试图片

图像处理中常用的一些测试图片。包括彩色图片、灰度图片、二值图片

2015-01-17

cocos2d-x 3.X 接收图片 base64 转码显示

cocos2d-x 3.X 接收图片 base64 转码显示,最终图片流显示在 Sprite 上

2014-11-30

SPH 流体动画源代码

光滑流体粒子动力学(SPH)方法简单实例代码,包括可运行程序。 其中,图形绘制部分采用 DirectX 引擎。 具体分析过程,见博客:http://blog.csdn.net/ironyoung/article/details/8068929

2014-11-24

邮箱地址列表语法分析(附实验报告)

学习编译原理时写的一个有关邮箱地址列表的词法分析程序,在VS2010平台下调试通过,并且其中附带有本人的实验报告,希望对大家的学习有所帮助。如有任何问题,咨询本人CSDN空间。

2013-01-05

邮箱地址列表词法分析(附实验报告)

学习编译原理时写的一个有关邮箱地址列表的词法分析程序,在VS2010平台下调试通过,并且其中附带有本人的实验报告,希望对大家的学习有所帮助。如有任何问题,咨询本人CSDN空间。

2013-01-04

邮箱地址列表词法分析(含实验报告)

学习编译原理时写的一个有关邮箱地址列表的词法分析程序,在VS2010平台下调试通过,并且其中附带有本人的实验报告,希望对大家的学习有所帮助。如有任何问题,咨询本人CSDN空间。

2013-01-04

《数据结构教程》课本源代码

《数据结构教程》(重点大学计算机专业系列教材,李春葆等主编,清华大学出版社,“十一五”国家级规划教材)课本源代码

2012-12-08

计算机网络(谢希仁著,第五版)

《计算机网络》第五版,作者谢希仁。全书分为10章,比较全面系统地介绍了计算机网络的发展和原理体系结构、物理层、数据链路层、网络层、运输层、应用层、网络安全、因特网上的音频/视频服务、无线网络和下一代因特网等内容。可供电气信息类和计算机类专业的大学本科生和研究生使用,对从事计算机网络工作的工程技术人员也有学习参考价值。

2012-09-28

LU分解(Doolittle)matlab函数代码

数值分析课程中常见的LU分解代码,写成matlab函数形式,可以直接调用。使用的是Doolittle方法进行计算

2012-09-27

空空如也

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

TA关注的人

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