it‘s begin!
原创
2010-11-28 05:12:19
524阅读
云计算集成架构
转载
精选
2015-03-14 14:57:15
385阅读
原题及翻译Background from Wikipedia: “Set theory is a branch of mathematics created principally by the German mathematician Georg Cantor at the end of the 19th century.来自维基百科的背景:“集合论是一个数学分支,主要由19世纪末的德国数学...
原创
2021-08-10 10:23:21
118阅读
题目一:编写一个类Computer类,中含有一个求n的阶乘方法。将该类打包,并在另一个包中Java文件App.java中引入包,在主类中定义Computer类中的对象,调用求n得阶乘方法(n由参数决定),并将结果输出。1.源代码: 1.1Computer.java //创建了一个包并将其打包,包名为Computer,里面包含了一个Computer1类,类中定义了一个求阶乘的方法。
pa
Stop-Computer停止(关闭)本地和远程计算机-AsJob-Authentication例子$j = stop-computer -computername Server01, Server02 -asjob$results = $j | receive-job$resultsRestore-Computer在本地计算机上启动系统还原restore-computer -RestorePoi
原创
2013-10-21 22:48:06
489阅读
汇编语言计算机是人类创造出来的一种高级工具,有着简单的智能,但是还并不能向人与人一样直接交流;而人们控制计算机的语言也都是高级语言,计算机不理解高级语言,必须通过编译器转成二进制代码才能运行。计算机真正能够理解的都是低级语言,来控制硬件设备。而汇编语言就是低级语言,直接描述控制CPU的运行。因此,语言在了解计算机语言之前,先弄明白汇编语言是怎么回事;一定会事半功倍!1:Whatisassembly
原创
2018-04-03 01:46:42
714阅读
点赞
原题及翻译Background from W...
转载
2019-02-26 07:54:00
33阅读
Computer Englishsemicolon:分号delimiter:定界符substitution:替代符single quotes:单引号double quotes:双引号format substitution character:格式化字符串left alignment:左对齐for name,the width reserved is 10.round off:...
原创
2021-07-13 11:45:14
134阅读
I. Introduction
A computer is an electronic(adj.操作,使用) other forms of information.
The modern world of high technology could not have c
原创
2008-04-17 18:42:24
907阅读
CPU的位和字长 位:在数字电路和电脑技术中采用二进制,代码只有“0”和“1”,其中无论是“0”或是“1”在CPU中都是一“位”。 字长:电脑技术中对CPU在单位时间内(同一时间)能一次处理的二进制数的位数叫字长。所以能处理字长为8位数据的CPU通常就叫8位的CPU。同理32位的CPU就能在单位时间内处理字长为32位的二进制数据。字节和字长的区别:由于常用的英文字符用8位二进制就可以表示,所以通常
原创
2008-07-06 15:36:43
570阅读
原题及翻译Background from Wikipedia: “Set theory is a branch of mathematics created principally by the German mathematician Georg Cantor at the end of the 19th century. 来自维基百科的背景:“集合论是一个数学分支,主要由19世纪末的德国数学
原创
2022-03-23 18:06:49
101阅读
题意:给定一棵树,求出每个点到树上所有点的最大距离。思路:先dfs预处理出来 考虑u这颗子树,往下走的最
原创
2021-07-06 10:57:54
160阅读
dmesg | grep CPUget CPU informationdmesg | grep hdget hard desk informationfreeget memory disk information
转载
2011-09-11 16:47:00
80阅读
2评论
ZS the Coder is coding on a crazy computer. If you don't type in a word for a cconsecutive seconds, everything you typed disappear! More formally, if
转载
2017-10-14 20:42:00
119阅读
原题及翻译Background from W...
转载
2019-02-26 07:54:00
45阅读
Computer Englishsemicolon:分号delimiter:定界符substitution:替代符single quotes:单引号double quotes:双引号format substitution character:格式化字符串left alignment:左对齐for name,the width reserved is 10.round off:...
原创
2022-01-28 10:47:39
88阅读
http://theitbros.com/this-computer-cant-connect-to-the-remote-computer/ This computer can’t connect to the remote computerFirst of all, check that the remote computer is accessible over the netwo
转载
2017-06-02 16:01:36
3895阅读
1.The Art of Computer Programming Author: Donald.E.Knuth Web site: http://www-cs-faculty.stanford.edu/~knuth/taocp.html Book Info: 这部书被誉为20世纪最重要的20部著作之一,与Einstein的<<相对论>>并列,是计算机科学领域的权威著
转载
精选
2006-04-18 21:36:32
2414阅读
2评论
Computer Networking: a Top-Down Approach (8th ed.) : Notes of "Select" Lectures Course Information Computer Networks Professor Jim Kurose COMPSCI 453 ...
转载
2021-05-11 21:22:42
946阅读
2评论
题意: N 个点 N-1条边 每条边有权值 求每个点所能达的最长距离// 树形dp 2次dfs 一次转成有根树、并求出每个子树(以i为根)到叶子节点的最大距离 还有就是从与i相连的个子节点j遍历下去的最大距离 // 其实 每个子树(以i为根)到叶子节点的最大距离 就是 max(child[i][j]);#include #include #include #include #include #include #include using namespace std;#define MOD 1000000007#define maxn 10010vector E[maxn],V[maxn],c.
原创
2021-07-29 16:20:09
45阅读