自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (3)
  • 收藏
  • 关注

原创 2.2-2 选择排序

#include void main(){ int i, j, m; int min, index; int a[6] = {5,2,4,6,1,3}; for (i = 0; i < 6; i++){ min = a[i]; for (j = i+1; j < 6; j++){ if (a[j] < min) { min = a[j]; index =

2014-03-31 19:54:07 428

原创 第二章 插入排序

插入算法的伪代码为:for j = 2 : length(a) key = a[j]; while i > 0 && a[i] > key a[i+1] = a[i]; i--; a[i+1] = key;C语言实现:#include void main(){ int i,j; int a[6] = {5,

2014-03-31 14:31:40 511

转载 WHAT ARE TRAINING SET, VALIDATION SET AND TEST SET?

这三个名词在机器学习领域的文章中极其常见,但很多人对他们的概念并不是特别清楚,尤其是后两个经常被人混用。Ripley, B.D(1996)在他的经典专著Pattern Recognition and Neural Networks中给出了这三个词的定义。Training set: A set of examples used for learning, which is to fit the

2014-03-31 08:41:36 597

转载 LaTeX 使用 bib 管理参考文献时,引用网络资源 URL 导致排版难看的问题

Example usageIn the preamble:\usepackage{url}%% Define a new 'leo' style for the package that will use a smaller font.\makeatletter\def\url@leostyle{% \@ifundefined{selectfont}{\def\UrlFont{

2013-07-01 10:16:34 2908

原创 latex错误File ended while scanning use of \@newl@bel

1、File ended while scanning use of \@newl@bel运行时显示错误:! File ended while scanning use of \@newl@bel.                   \par  l.8 \begin{document} ?  解决方法:将文件夹中除了tex文件、bib文件和cls文件之外的文件全部

2013-03-23 11:12:09 8878 1

omnet4.0实例入门(有图例)

omnet4.0实例入门,有图例,便于快速上手

2013-07-22

Anycast学习报告

Anycast学习报告,介绍了任播机制,网络层任播和应用层任播,深入了解任播机制

2013-07-22

空空如也

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

TA关注的人

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