摘要: 1 import os 2 import re 3 import sys 4 import time 5 import traceback 6 import paramiko 7 import telnetlib 8 from functools import reduce 9 from pprin 阅读全文
posted @ 2020-08-05 23:14 技术人员kelvin 阅读(315) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- import datetime, time, json, re, os #from pwd import getpwnam #quality str_quality = ''.join(['{StartTime}|||{SubscriberID}', \ '|'*11, '{Bitrate}|{MOSAvg}|{DF}|{MLR}||||'... 阅读全文
posted @ 2019-01-03 12:46 技术人员kelvin 阅读(213) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- import datetime, time, heapq, cx_Oracle #2rd sheet def get_5mins_3A_LOG(): conn = cx_Oracle.connect('huawei_cem/huawei2018cem@172.31.34.31:1521/BLADE2') curs = conn.cu... 阅读全文
posted @ 2018-12-22 06:27 技术人员kelvin 阅读(402) 评论(0) 推荐(0) 编辑
摘要: 几种排序算法的C++实现。 阅读全文
posted @ 2018-08-20 17:39 技术人员kelvin 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 二叉查找树的C++实现,注意遍历树的非递归实现,MORRIS方式的O(1)空间复杂度的线索化树的实现。 阅读全文
posted @ 2018-08-16 19:31 技术人员kelvin 阅读(496) 评论(0) 推荐(0) 编辑
摘要: 二叉最小堆的C++实现。 阅读全文
posted @ 2018-08-13 23:01 技术人员kelvin 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 二项队列的C++完整实现,注意移位运算的高效使用。 阅读全文
posted @ 2018-08-09 18:32 技术人员kelvin 阅读(229) 评论(0) 推荐(0) 编辑