#UM

tcpdump的简单使用

  linux下使用tcpdump(命令)抓包,然后使用window或者mac下的wireshark(图形化)分析包,使用tcpdump生成*.cap,然后使用wireshark打开*.cap文件   tcpdump命令是一款sniffer工具,它可以打印所有经过网络接口的数据包的头信息,也可以使用-w选项将...
代码星球 ·2020-04-06

yum基本使用方法

yum是FedoraRHELCentosSUSE等linux发行版的软件包管理工具通过执行manyum查看yum的帮助信息可以知道yummakecache是将服务器上的软件包信息下载到本地缓存,以提高搜索、安装软件的速度基本指令安裝套件yuminstall套件名稱昇級套件yumupdate套件名稱昇級全部套件yumup...
代码星球 ·2020-04-06

CentOS release 6.6 (Final)如何安装firefox和chromium

一、firefox的安装:1.安装remi源rpm-Uvhhttp://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm(注意:官网上源可能会有跟新变化,导致说找不到对应rpm文件,可以先在浏览器上进入http://downlo...

【laravel5.4】使用baum ode 类库实现无限极分类

1、在model中引入baumode类库,并继承,具体参考 https://packagist.org/packages/baum/baum2、核心代码:/**model::create([]):方法返回被插入的模型实例。但是,在此之前,你需要指定模型的fillable或guarded属性*model继承ba...

HDU 1005 Number Sequence

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1005找周期。当f(n)函数值再次出现1。1的时候就是一个循环。#include<cstdio>usingnamespacestd;#definemaxn1000+5intmain(){inta,b...
代码星球 ·2020-04-06

[Leetcode]-Path Sum

Givenabinarytreeandasum,determineifthetreehasaroot-to-leafpathsuchthataddingupallthevaluesalongthepathequalsthegivensum.Forexample:Giventhebelowbinarytreeandsum...
代码星球 ·2020-04-06

hdoj-1212-Big Number【大数取余&amp;简单题】

TimeLimit:2000/1000MS(Java/Others)MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):6015AcceptedSubmission(s):4205ProblemDescriptionAsweknow,BigNumberisal...

NYOJ 927 The partial sum problem 【DFS】+【剪枝】

Thepartialsumproblem时间限制:1000 ms | 内存限制:65535 KB难度:2描写叙述Oneday,Tom’sgirlfriendgivehimanarrayAwhichcontainsNintegersandaskedhim:Canyouchooses...

Summary Day32

1.文件管理1.1标C文件处理和UC文件处理函数的比較:标C文件处理函数比UC的文件处理函数速度快。由于标C内部独立输入输出缓冲区,会积累一定数量之后再写入文件,因此读写效率比較高使用time命令能够获取进程的执行时间timeb.outreal 0m0.081s =>真实时间user ...
代码星球 ·2020-04-06

leetcode 264: Ugly Number II

UglyNumberIITotalAccepted:2920TotalSubmissions:15174Writeaprogramtofindthen-thuglynumber.Uglynumbersarepositivenumberswhoseprimefactorsonlyinclude2,3,5.Forexamp...
代码星球 ·2020-04-06

LeetCode OJ 之 Ugly Number (丑数)

Writeaprogramtocheckwhetheragivennumberisanuglynumber.Uglynumbersarepositivenumberswhoseprimefactorsonlyinclude 14 isnotuglysinceitincludesanotherprim...

Leet Code OJ 338. Counting Bits [Difficulty: Medium]

题目:Givenanonnegativeintegernumbernum.Foreverynumbersiintherange0≤i≤numcalculatethenumberof1’sintheirbinaryrepresentationandreturnthemasanarray.Example:Fornum=5y...
代码星球 ·2020-04-06

[LeetCode] Single Number III

nums=[1,2,1,3,2,5],return [5,3] isalsocorrect.Youralgorithmshouldruninlinearruntimecomplexity.Couldyouimplementitusingonlyconstantspacecomplexity?Cred...
代码星球 ·2020-04-06

Majority Number

题目描写叙述链接地址解法算法解释Givenanarrayofintegers,themajoritynumberisthenumberthatoccursmorethanhalfofthesizeofthearray.Findit..ExampleGiven[1,1,1,1,2,2,2],return1Challeng...
代码星球 ·2020-04-06

uml精粹——10.状态机图

10.状态机图statemachinediagram 状态机图是常见的描写叙述一个系统行为的技术。在面向对象的方法中,为单个类绘制一个状态机图来展示单个对象的生命周期行为。 见图10.1 图中显示了管理我不同平常的安全系统的控制类的一个状态机图。它从控制对象被创建时的状态開始:等待状态wa...
代码星球 ·2020-04-06
首页上一页...518519520521522...下一页尾页