Description M公司是一个非常庞大的跨国公司,在许多国家都设有它的下属分支机构或部门。为了让分布在世界各地的N个部门之间协同工作,公司搭建了一个连接整个公司的通信网络。该网络的结构由N个路由器和N 1条高速光缆组成。每个部门都有一个专属的路由器,部门局域网内的所有机器都联向这个路由器,然后 ...
分类:
Web程序 时间:
2018-11-21 12:31:07
阅读次数:
180
1、首先需要安装一些32位库sudo apt-get install libx11-dev:i386 libx11-dev sudo apt-get install g++-multilib sudo apt-get install osspd 2.下载HTK src和samples http:// ...
分类:
系统相关 时间:
2018-11-20 15:13:35
阅读次数:
277
-- 链接数据库 mysql -uroot -p mysql -uroot -pmysql -- 退出数据库 exit/quit/ctrl+d -- sql语句最后需要有分号;结尾 -- 显示数据库版本 select version(); -- 显示时间 select now(); -- 查看所有数 ...
分类:
数据库 时间:
2018-11-20 14:59:41
阅读次数:
185
Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Note: Do not modify the linked list. Follow up:Can you ...
分类:
其他好文 时间:
2018-11-20 13:24:48
阅读次数:
127
Difficulty:medium Description Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Note: Do not modify the ...
分类:
其他好文 时间:
2018-11-19 11:11:39
阅读次数:
110
stat 命令查看文件或文件系统的状态时间等属性 用法:stat [参数]... 文件... 简单的介绍一下stat命令显示出来的文件其他信息: - File:显示文件名 - Size:显示文件大小 - Blocks:文件使用的数据块总数 - IO Block:IO块大小 - regular fil ...
分类:
系统相关 时间:
2018-11-16 22:28:27
阅读次数:
228
在MySQL中删除主键需要两步. (1)如果有auto_increment,先删除之; (2)删除主键约束 primary key 1、alter table t9 modify id int(11); #这里用的modify,只改变数据类型,也可以用change,改变列名的同时输入新的数据类型。 ...
分类:
数据库 时间:
2018-11-15 13:56:01
阅读次数:
508
表: 1.查看表创建语句: show create table 表名; 2.删除表: drop table 表名; 修改表结构:1.添加一个列: alter table 表名 add(列 列类型); 2.修改列类型: alter table 表名 modify 列 列类型; 3.修改列名; alte ...
分类:
数据库 时间:
2018-11-15 10:22:04
阅读次数:
225
pragma solidity ^0.4.0; // priveta public internal contract Test{ uint public _age; function Test(uint age){ _age = age; } function f(){ modify(_age);... ...
分类:
其他好文 时间:
2018-11-13 16:12:03
阅读次数:
165
Given a linked list, return the node where the cycle begins. If there is no cycle, return null.Note: Do not modify the linked list.想法:(1)首先的判断链表中是否有环,... ...
分类:
其他好文 时间:
2018-10-31 13:49:01
阅读次数:
173