摘要: 我们平时经常会有一些数据运算的操作,需要调用sqrt,exp,abs等函数,那么时候你有没有想过:这个些函数系统是如何实现的?就拿最常用的sqrt函数来说吧,系统怎么来实现这个经常调用的函数呢?虽然有可能你平时没有想过这个问题,不过正所谓是“临阵磨枪,不快也光”,你“眉头一皱,计上心... 阅读全文
posted @ 2017-06-25 18:59 紫魔戒 阅读(1126) 评论(0) 推荐(0) 编辑
摘要: DescriptionThere are a total of n courses you have to take, labeled from 0 to n - 1.Some courses may have prerequisites, for example to take c... 阅读全文
posted @ 2017-06-19 16:43 紫魔戒 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 封装、继承、多态(1)封装 封装,也就是把客观事物封装成抽象的类,并且类可以把自己的数据和方法只让可信的类或者对象操作,对不可信的进行信息隐藏。(2)继承 继承是指这样一种能力:它可以使用现有类的所有功能,并在无需重新编写原来的类的情况下对这些功能进行扩展。 继承现有类... 阅读全文
posted @ 2017-06-09 14:40 紫魔戒 阅读(3033) 评论(0) 推荐(0) 编辑
摘要: DescriptionGiven an array of integers and an integer k, you need to find the number of unique k-diff pairs in the array. Here a k-diff pair is... 阅读全文
posted @ 2017-06-08 19:37 紫魔戒 阅读(166) 评论(0) 推荐(0) 编辑
摘要: DescriptionGiven an unsorted array of integers, find the length of longest increasing subsequence. For example, Given [10, 9, 2, 5, 3, 7, 1... 阅读全文
posted @ 2017-05-30 20:20 紫魔戒 阅读(107) 评论(0) 推荐(0) 编辑
摘要: DescriptionGiven an integer array, you need to find one continuous subarray that if you only sort this subarray in ascending order, then the w... 阅读全文
posted @ 2017-05-26 18:15 紫魔戒 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 守护进程(Daemon)是运行在后台的一种特殊进程。它独立于控制终端并且周期性地执行某种任务或等待处理某些发生的事件。守护进程是一种很有用的进程。 1、守护进程最重要的特性是后台运行。 2、守护进程必须与其运行前的环境隔离开来。这些环境包括未关闭的文件描述符,控制终端,会话和进程组,... 阅读全文
posted @ 2017-05-25 12:01 紫魔戒 阅读(258) 评论(0) 推荐(0) 编辑
摘要: substr用法basic_string substr( size_type pos = 0, size_type count = npos ) const; Returns a substring [pos, pos+count). If the requested subst... 阅读全文
posted @ 2017-05-22 14:24 紫魔戒 阅读(1579) 评论(0) 推荐(0) 编辑
摘要: DescriptionGiven an array of integers and an integer k, you need to find the total number of continuous subarrays whose sum equals to k. Exam... 阅读全文
posted @ 2017-05-21 19:51 紫魔戒 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 各种排序算法插入排序直接插入排序void InsertSort(int arr[], int len) { int i, j; int temp; for (i = 1; i = 0 && arr[j] > temp; j--) arr[j +... 阅读全文
posted @ 2017-05-21 16:57 紫魔戒 阅读(306) 评论(0) 推荐(0) 编辑