#include<stdio.h> #include<string.h> int main(void){ char ch,stro[1001],stack[1001]; int numstack[1001]; int top=-1,head=-1; /************************ ...
分类:
编程语言 时间:
2021-02-20 12:11:32
阅读次数:
0
tomcat 启动tomcat cd /usr/tomcat/apache-tomcat-7.0.57/bin/ ./startup.sh 停止tomcat ./shutdown.sh 查看tomcat日志信息 tail -200f /usr/tomcat/apache-tomcat-7.0.57/ ...
分类:
其他好文 时间:
2021-02-20 11:58:57
阅读次数:
0
线上故障主要包括cpu 磁盘 内存 网络等问题 依次排查 1.cpu 1) 先用ps找到进程pid 2) top -H -p pid 找到cpu占用高的线程 3)printf '%x\n' pid 获得16进制的nid 4) jstack pid |grep 'nid' -C5 -color 显示堆 ...
分类:
其他好文 时间:
2021-02-20 11:45:56
阅读次数:
0
游客登录鉴权之业务代码实战 系列文章 从0到1使用Golang开发生产级麻将游戏服务器—第1篇 从0到1使用Golang开发生产级麻将游戏服务器—第2篇 从0到1使用Golang开发生产级麻将游戏服务器—第3篇 介绍 这将是一个完整的,完全践行 DevOps/GitOps 与 Kubernetes ...
分类:
其他好文 时间:
2021-02-19 13:15:09
阅读次数:
0
兄弟题1084 Broken Keyboard (20 分),一样的水~。 ps:`当按键都没坏的时候,输入可能为空,要用getline而不能用cin。 bool vis[200]; string a,b; int main() { getline(cin,a); getline(cin,b); f ...
分类:
其他好文 时间:
2021-02-19 13:11:20
阅读次数:
0
Google Cloud Platform https://cloud.google.com/icons/ Azure https://docs.microsoft.com/en-us/azure/architecture/icons/ CISCO http://www.cisco.com/web/ ...
分类:
其他好文 时间:
2021-02-19 12:57:52
阅读次数:
0
题目描述 For this problem, you will write a program that reads in a sequence of 32-bit signed integers. After each odd-indexed value is read, output the m ...
分类:
其他好文 时间:
2021-02-18 13:06:04
阅读次数:
0
一、MySQL安装 0、下载社区版安装包 官网下载地址:https://dev.mysql.com/downloads/installer/ 1、进入安装页面,这里不选择默认安装的所有工具,仅选择Server only。 2、如果没有VC++环境就点击execute安装,已安装就继续下一步。 3、安 ...
分类:
数据库 时间:
2021-02-17 15:08:41
阅读次数:
0
##数据库相关概念 **DB:**数据库(database):存储数据的“仓库”。它保存了一系列有组织的数据 **DBMS:**数据库管理系统,又称为数据库软件(产品),用于管理DB中的数据 **SQL:**结构化查询语言,用于和DBMS通信的语言 文件目录介绍 my.ini文件下存在 端口号,字符 ...
分类:
数据库 时间:
2021-02-17 15:04:21
阅读次数:
0
Stopwatch sw = new Stopwatch(); sw.Start(); //任务123 Console.WriteLine("{0, 4}ms",sw.Elapsed.TotalMilliseconds); ...
分类:
其他好文 时间:
2021-02-17 14:21:57
阅读次数:
0