码迷,mamicode.com
首页 >  
搜索关键字:print    ( 43532个结果
从系统的角度分析影响程序执行性能的因素——动态链接性能
Linux系统 在linux内核中,比较重要的部分包括系统调用、进程管理、内存管理和文件系统。其中,系统调用就是非内核软件想要使用高级内核功能的一种方法,进程管理是不同任务之间的来回切换,文件系统是硬件资源或者数据资源的一种方式,内存管理是对内存的分配和回收方式。 本文将简要讲解系统调用、进程管理和 ...
分类:其他好文   时间:2021-05-24 14:18:04    阅读次数:0
基于Yen算法的k最短路径问题的python实现
老规矩,先上代码 #date:2021-5-17 #author:Linuas #b站:会武术的白猫 import copy def Dijkstra(network,s,d):#迪杰斯特拉算法算s-d的最短路径,并返回该路径和代价 #print("Start Dijstra Path……") pa ...
分类:编程语言   时间:2021-05-24 14:13:38    阅读次数:0
算法学习:给定一个序列求最大子序列的和
题目 给定一个序列,给出最大子序列的和。 解答 public class maxSubSum { public static int maxSubSum1(int [] a){ int maxSum = 0; for (int i = 0; i < a.length; i++) { for(int ...
分类:编程语言   时间:2021-05-24 14:09:52    阅读次数:0
Helloworld
Hello,world Java代码: public class Hello{ public static void main(String[] args){ System.out.print("Hello,world!"); }} 编译: javac Hello.java //编译生成class文 ...
分类:其他好文   时间:2021-05-24 14:06:34    阅读次数:0
windows中的换行符和Linux中的换行符
# cat -A tmp.tmp 120.4987 12.717858^M$ ^M 对应的字符是 \r # cat tmp.txt | awk -vRS='\r\n' '{print $2,$1}' 或者转换格式文件 yum install dos2unix -y dos2unix tmp.tmp ...
分类:Windows程序   时间:2021-05-24 13:41:55    阅读次数:0
用python写九九乘法表
for i in range(1,10): for j in range(1,i+1): print(i,"*",j,"=",i*j, "\t",end="") else: print("") 1 * 1 = 1 2 * 1 = 2 2 * 2 = 4 3 * 1 = 3 3 * 2 = 6 3 * ...
分类:编程语言   时间:2021-05-24 13:38:54    阅读次数:0
布尔类型
bool #布尔类型 True #真 False #假 l = [1,2,3,4] print( 1>2 ) #False print( 4 in l) #True print(1 not in l) #False print( len(l) > 3) #True 比如,想写个while的死循环,可 ...
分类:其他好文   时间:2021-05-24 13:31:59    阅读次数:0
python内置函数
# print()# input()# len()# type()# int()# str()# list()# tuple()# dict()# set()# float()# id() # avg = sum(l) / len(l) #计算平均值# print(avg)# print( max( ...
分类:编程语言   时间:2021-05-24 13:23:00    阅读次数:0
python time模块练习
import time#时间戳,从计算机诞生那一天到现在过了多少秒 1621063294#格式化好的时间 2021-5-15 19:38:23#2021515 ->50天后print( int(time.time()) ) #获取当前的时间戳print( time.strftime('%Y-%m-% ...
分类:编程语言   时间:2021-05-24 13:22:39    阅读次数:0
numpy.squeeze()的用法
https://www.cnblogs.com/hezhiyao/p/7833867.html import numpy as np x = np.array([[[0], [1], [2]]]) print(x) """x= [[[0] [1] [2]]] """ print(x.shape) # ...
分类:其他好文   时间:2021-05-24 13:02:32    阅读次数:0
43532条   上一页 1 ... 18 19 20 21 22 ... 4354 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!