自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 鱼C论坛上Python练习题-72

http://bbs.fishc.com/thread-93788-1-1.html 鱼C论坛上相关Python练习题 Given an unsorted array of integers, find the smallest number in the array, the largest number in the array, and the smallest numbe

2017-08-29 16:08:37 3434 2

原创 awk中多个分隔符^识别办法

grep 873.80700.5043:=201[6-7][0-1][0-4] DccRatableResourceQuery_8203[6-8]* | awk -F'\\^\\^\\^' '{print $14}'|awk -F ":" '{print substr($2,2)}'

2017-05-25 20:00:08 2789

原创 oracle导入文件时,日期格式问题

oracle导入文件时,日期格式问题 load data infile '/iot/opthb/TIBS_HOME/xcx/test/loadfile.txt' truncate into table zhicai_record_tmp  fields terminated by ' '  trailing nullcols(src_file_name,create_

2017-05-25 19:59:30 4225

转载 hash-map 相关参考博客

Linux下map hash_map和unordered_map效率比较 http://blog.csdn.net/whizchen/article/details/9286557 STL hash_map使用 http://blog.csdn.net/sdhongjun/article/details/4517325

2017-05-25 17:23:09 226

转载 HashMap实现原理分析

1. HashMap的数据结构 数据结构中有数组和链表来实现对数据的存储,但这两者基本上是两个极端。       数组 数组存储区间是连续的,占用内存严重,故空间复杂的很大。但数组的二分查找时间复杂度小,为O(1);数组的特点是:寻址容易,插入和删除困难; 链表 链表存储区间离散,占用内存比较宽松,故空间复杂度很小,但时间复杂度很大,达O(N)。链表的特点是:寻址困难

2017-05-25 16:46:46 322

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除