自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

MyLinChi的博客

删繁就简三秋树,领异标新二月花。

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

原创 矩阵运算

矩阵的基本性质 1.逆:n×nn\times n矩阵AA的逆A−1A^{-1}(如果存在)定义为满足AA−1=In=A−1AAA^{-1}=I_n=A^{-1}A的n×nn\times n的矩阵。若矩阵AA有逆,则称AA为可逆矩阵或者非奇异矩阵;否则称AA为不可逆矩阵或者奇异矩阵。 2.线性相关:若存在不全为0的相关系数c1,c2,...,cnc_1,c_2,...,c_n使得c1x1+c2x

2018-01-30 15:55:33 917

原创 求解分治算法的递推关系

相关概念 分治递推关系:如果f(n)f(n)表示求解规模为nn的问题所需的云算数,则ff满足递推关系 f(n)=af(n/b)+g(n)f(n)=af(n/b)+g(n)相关定理 【定理1】设ff是满足递推关系 f(n)=af(n/b)+cf(n)=af(n/b)+c 的增函数,其中nn被bb整除,b≥1,bb\geq 1,b是大于1的正整数,cc是一个正实数。那么 f(n)={O(

2018-01-23 18:41:02 3602

原创 求解线性递推关系

相关概念 线性递推关系: 一个常系数的k阶线性齐次递推关系是形如 an=c1an−1+c2an−2+...+ckan−ka_n=c_1a_{n-1}+c_2a_{n-2}+...+c_ka_{n-k} 的递推关系,其中c1,c2,...,ckc_1,c_2,...,c_k是实数且ck≠0c_k \neq 0。该定义中的递推关系是线性的,因为它的右边是序列前项的倍数。该递推关系是齐次的,因为所

2018-01-23 15:15:01 6440

原创 python学习常见问题

格式对齐问题在python中同一个块的每一行前面缩进必须一样,否则就会报IndentationError: unexpected indent的错误。 如:def print_two(*args): ①arg1,arg2 = args ②print "arg1:%r,arg2:%r" % (arg1,arg2)①和②要么用同样数量的空格,要么都用Tab键,但两者不能

2018-01-17 18:58:49 932

原创 图灵停机问题(halting problem)

问题描述 是否存在一个过程能做这件事:该过程以一个计算机程序以及该程序的一个输入作为输入,并判断该过程在给定输入运行时是否最终能停止。问题解答 1936年图灵证明这样的过程是不存在的。证明 (反证法) 假设:存在一个这样的过程H(P,I),P为计算机程序,I为该程序的一个输入,H可以根据P和I返回true(该过程在给定输入运行时能停止)或者false(该过程在给定输入运行时不能停止)。

2018-01-12 15:00:57 7835

原创 算法导论26.1-4

26.1-4问题描述 设ff为网络的一个流,设α\alpha为一个实数,则αf\alpha f称为标量流积,该标量流积是一个从V×VV\times V到R的一个函数,其定义如下: (αf)(u,v)=α⋅f(u,v)(\alpha f)(u,v)=\alpha \cdot f(u,v) 证明:网络中的流形成一个凸集。也就是说,证明:如果f1f_1和f2f_2为两个流,则αf1+(1−α

2018-01-09 10:37:50 1583

原创 用C语言实现基于二叉搜索树的时钟管理程序

二叉搜索树具有平均操作时间复杂度为O(lgn)的优点,其实现的主要难点在删除操作。项目中需要给一些任务设定超时机制,因此需要用到时钟管理。但平台使用的是c语言,因为没有引用,实现起来特别麻烦(要涉及三重指针)。一下是程序部分:#define _CRT_SECURE_NO_WARNINGS#include#include#define i32 int#define u32 unsigne

2018-01-04 19:56:18 378

Approximation Algorithms.rar

Most natural optimization problems, including those arising in important application areas, are NP-hard. Therefore, under the widely believed conjecture that P -=/= NP, their exact solution is prohibitively time consuming. Charting the landscape of approximability of these problems, via polynomial time algorithms, therefore becomes a compelling subject of scientific inquiry in computer science and mathematics. This book presents the theory of approximation algorithms as it stands today. It is reasonable to expect the picture to change with time. This book is divided into three parts. In Part I we cover combinatorial algorithms for a number of important problems, using a wide variety of algorithm design techniques. The latter may give Part I a non-cohesive appearance. However, this is to be expected - nature is very rich, and we cannot expect a few tricks to help solve the diverse collection of NP-hard problems. Indeed, in this part, we have purposely refrained from tightly categorizing algorithmic techniques so as not to trivialize matters. Instead, we have attempted to capture, as accurately as possible, the individual character of each problem, and point out connections between problems and algorithms for solving them. In Part II, we present linear programming based algorithms. These are categorized under two fundamental techniques: rounding and the primaldual schema. But once again, the exact approximation guarantee obtainable depends on the specific LP-relaxation used, and there is no fixed recipe for discovering good relaxations, just as there is no fixed recipe for proving a theorem in mathematics (readers familiar with complexity theory will recognize this as the philosophical point behind the P -=/= NP question).

2020-04-26

BF5325A按压式指纹传感器说明书.rar

BF5325A按压式指纹传感器说明书,包含产品的说明书

2020-04-14

JEE7帮助文档.rar

J2EE7帮助文档

2020-04-14

JDK9中文文档.rar

jdk9的帮助文档

2020-04-14

牛津字典(欧路词典).txt

由于连接太容易吞,所以放到文档里。打开即可完成百度云连接下载。有问题可以在评论区留言。由于连接太容易吞,所以放到文档里。打开即可完成百度云连接下载。有问题可以在评论区留言。由于连接太容易吞,所以放到文档里。打开即可完成百度云连接下载。有问题可以在评论区留言。

2020-03-29

__helloworld__

代码的一个示例,可以查看如何新建一个工程,然后运行。

2018-05-12

计算机技术的经典英文书籍

计算机领域的一些基础知识书籍,外文,非影印,自带目录高清。

2018-05-11

C、TCP、CAN底层相关电子书

收集一些高品质的电子书,用于深刻理解C语言以及通讯相关的TCP协议和CAN协议的电子文档。

2018-05-11

coolFormat

用于代码的格式化,如把tab字符转换为空格,把花括号按照标准格式摆放等。对于C/C++等代码的格式化效果不错。

2018-05-11

sscom5.13.1串口调试工具

用于串口调试的工具,版本新,可以显示log的打印时间,并能保存窗口字符数据到文本文件。

2018-05-11

算法导论(第三版)全部练习题+思考题答案(原书标准)

该答案很全面,是原书英文版的答案,可以保证正确性,是良好的算法学习助手。

2017-11-15

算法导论第三版(1-21章)答案(详细)

本资源花钱买来,因此资源分较高。但答案详细,物超所值。

2017-10-27

STL_帮助文档

2016-11-26

MusicPlayer

用MediaPlayer实现的android平台的音乐播放器源码。

2016-07-30

MediaPlayer音乐播放器

MediaPlayer音乐播放器

2016-07-30

android音乐播放器

android音乐播放器

2016-07-29

空空如也

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

TA关注的人

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