Javascript算法系列之快速排序(Quicksort)原文出自:http://www.nczonline.net/blog/2012/11/27/computer-science-in-javascript-quicksort/https://gist.github.com/paullewis...
分类:
编程语言 时间:
2015-12-02 18:27:21
阅读次数:
235
Hard Disk Technology1. 机械硬盘内部构造几个重要概念:Sector(扇区),Head(读写头),Track(磁道),Cylinder(柱面)。如果一个文件比较大,磁盘的写入顺序如下,因此有了后面的CHS地址表示: 写满一个扇区->磁盘旋转,写同磁道的下一个扇区->写满一个磁道....
分类:
其他好文 时间:
2015-11-29 06:17:29
阅读次数:
136
Data Organization1. 进制转换。 按照正常的书写顺序写一个数字(无论多少进制),其中最左边的列称为“最高有效符号”,最右边的列称为“最低有效符号”。 (The right-most column is called the least significant symbol, a.....
分类:
其他好文 时间:
2015-11-29 06:15:32
阅读次数:
95
上次提到的手写数字的识别就是一个多分类的问题,有10种不同的分类(0-9)。在神经网络中我们所做的多分类问题是the one VS all方法的延伸,让我们看一个computer vision的例子,在这个例子中,我们要对图片进行4个分类:步行,car,摩托车,火车。我们建立的这个神经系统,它有4个...
分类:
其他好文 时间:
2015-11-26 00:59:36
阅读次数:
181
题目连接http://poj.org/problem?id=1330Nearest Common AncestorsDescriptionA rooted tree is a well-known data structure in computer science and engineering....
分类:
其他好文 时间:
2015-11-24 22:02:51
阅读次数:
208
stl_tree.hG++ 2.91.57,cygnus\cygwin-b20\include\g++\stl_tree.h 完整列表/* * * Copyright (c) 1996,1997 * Silicon Graphics Computer Systems, Inc. * * Permis...
分类:
其他好文 时间:
2015-11-23 12:56:52
阅读次数:
210
/// /// Computer Information /// public class ComputerHelper { public string CpuID; public string MacAddress; publi...
1.1 重要会议(1)机器视觉重要会议CVPR:Conferenceon Computer Vision and Pattern Recognition, IEEE, 五星ICCV:InternationalConference on Computer Vision, IEEE, 五星ECCV:Eu...
分类:
其他好文 时间:
2015-11-21 14:26:16
阅读次数:
295
http://codeforces.com/problemset/problem/540/CYou play a computer game. Your character stands on some level of a multilevel ice cave. In order to move...
分类:
其他好文 时间:
2015-11-19 14:30:22
阅读次数:
162
#define_CRT_SECURE_NO_WARNINGS1
#include<stdio.h>
#include<stdlib.h>
#include<assert.h>
intint_computer(intnum1,char*p,intnum2)
{
if(p=="-a")
returnnum1+num2;
elseif(p=="-s")
returnnum1-num2;
elseif(p=="-m")
returnnum1*num2;
elseif(p=="-d"..
分类:
编程语言 时间:
2015-11-17 19:13:32
阅读次数:
235