码迷,mamicode.com
首页 >  
搜索关键字:while for    ( 28479个结果
HDU1160 - FatMouse's Speed - 最长上升子序列的变形+记录路径
##思路 最长上升子序列的变形+记录路径 ##AC代码 #include<iostream> #include<cmath> #include<string.h> #include<algorithm> #include<stdio.h> #include<iomanip> #define inf ...
分类:其他好文   时间:2021-04-19 14:43:51    阅读次数:0
变量,元字符,流程判断if,while、for循环
一: shell编程介绍 1、一个shell脚本运行必须要拥有r和x权限; chamod u+x 1.txt 2、运行一个shell脚本的3个步骤: (1)启动bash解释器 (2)bash把文件内容从硬盘读入内存 (3)bash把读入到内存的内容进行语法解释,控制操作系统执行shell代码 写脚本 ...
分类:其他好文   时间:2021-04-16 12:25:54    阅读次数:0
模拟cpu/mem/io使用率
模拟cpu使用率 脚本: 可以将1个cpu-core打满 k.c #include <stdlib.h> int main() { while(1); return 0; } gcc -o out k.c ./out 查看top可以看到将1个cpu-core打满,可以根据需要,并发启动多个进程将多个 ...
分类:其他好文   时间:2021-04-16 12:03:28    阅读次数:0
nginx响应超时upstream timed out (110: Connection timed out) while reading response header from upstream
问题描述后台server服务响应时间正常,但是请求没有打到服务器,在nginx很慢才看到error日志,如下: 2018/07/26 10:17:42 [error] 45762#0: *7489 upstream timed out (110: Connection timed out) whil ...
分类:其他好文   时间:2021-04-15 12:25:45    阅读次数:0
Cannot deserialize instance of `java.util.ArrayList<org.jeecg.modules.face.entity.FaceDevice>` out of START_OBJECT token
远程调用出现json解析异常 操作失败,Error while extracting response for type [java.util.List<org.jeecg.modules.face.entity.FaceDevice>] and content type [application/ ...
分类:编程语言   时间:2021-04-14 12:42:30    阅读次数:0
单向链表为什么要用一个辅助变量遍历
对于链表添加操作,假如不考虑按序号添加,则可以写一个简单的方法: public void add(HeroNode heroNode) { //因为head节点不能动,因此我们需要一个辅助变量遍历 HeroNode temp = head; //遍历链表,找到最后 while (true) { // ...
分类:其他好文   时间:2021-04-14 12:35:54    阅读次数:0
pyqt5第一部分
### pyqt5 - pyqt5、qtdesigner安装,编译器安装环境里已详解 - designer设计的界面应用 - 打开qt designer界面设计软件设计界面 - pycharm->tool->extenal->designer - 利用pyuic把ui界面文件转换成py文件对象以供p ...
分类:其他好文   时间:2021-04-14 12:18:30    阅读次数:0
常用语句
# 常用语句 ## 条件语句 ### if.....else.... while True: x = int(input("请输入数字:50")) if x >50: print("你输入的数大于50") else: print("你输入的值小于50") ### if....elif....else ...
分类:其他好文   时间:2021-04-13 12:27:47    阅读次数:0
[Swagger]Unable to resolve service for type 'Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionGroupCollectionProvider' while attempting to activate
详细错误如下 System.AggregateException:“Some services are not able to be constructed (Error while validating the service descriptor 'ServiceType: Swashbuckl ...
分类:Windows程序   时间:2021-04-13 12:19:16    阅读次数:0
c语言入门教程–-6循环语句
c语言入门教程–-6循环语句 c语言提供了以下几种循环类型。while循环for 循环do…while 循环 while循环 #include <stdio.h> int main () { /* 局部变量定义 */ int a = 10; /* while 循环执行 */ while( a < 2 ...
分类:编程语言   时间:2021-04-13 12:12:17    阅读次数:0
28479条   上一页 1 ... 18 19 20 21 22 ... 2848 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!