namespace System {/*参考://https://www.cnblogs.com/banhua/archive/2012/07/13/2590920.html*/ using System.Collections.Generic; using System.Text; using S... ...
good morning. Since we have been through the main idea, now i am going to talk about the aesthetics behind the story. well Actually i am not sure if i ...
分类:
其他好文 时间:
2020-05-15 13:40:40
阅读次数:
91
泛型Dictionary<string,string>的用法 泛型最常见的用途是泛型集合,命名空间System.Collections.Generic 中包含了一些基于泛型的集合类,使用泛型集合类可以提供更高的类型安全性,还有更高的性能,避免了非泛型集合的重复的装箱和拆箱。 很多非泛型集合类都有对应 ...
分类:
其他好文 时间:
2020-05-15 10:05:42
阅读次数:
73
一,哈希表(Hashtable)简述 在.NET Framework中,Hashtable是System.Collections命名空间提供的一个容器,用于处理和表现类似keyvalue的键值对,其中key通常可用来快速查找,同时key是区分大小写;value用于存储对应于key的值。Hashtab ...
当查找的数据不存在,返回为 空时 在 html 中使用 {%empty%} 语句 进行显示 def getstudents(request): students = Student.objects.all().filter(s_name = 'qwer') # 指定一个不存在的值, # studen ...
分类:
其他好文 时间:
2020-05-14 13:47:29
阅读次数:
72
```pythonfrom collections import defaultdictfrom gensim import corporaimport jiebafrom gensim import similaritiesimport reclass Similarity: def docs(s... ...
分类:
其他好文 时间:
2020-05-14 01:24:08
阅读次数:
55
4.1 Python中的序列分类 4.1.1 容器序列 """ list tuple deque 可以放入任意类型的数据 """ 4.1.2 扁平序列 """ str bytes bytearray array.array 注意array与list的区别,array存放数据类型需一致,需指明存放什么 ...
分类:
编程语言 时间:
2020-05-13 23:09:39
阅读次数:
77
Counter中文意思是计数器,也就是我们常用于统计的一种数据类型,在使用Counter之后可以让我们的代码更加简单易读。 我们先看一个简单的例子: #统计词频 colors = ['red', 'blue', 'red', 'green', 'blue', 'blue'] result = {} ...
分类:
其他好文 时间:
2020-05-13 20:31:16
阅读次数:
107
1.1 分 很多技术都运用了分的编程思想,这里来举几个例子,这些都是分的思想 集中式服务发展到分布式服务 从Collections.synchronizedMap(x)到1.7ConcurrentHashMap再到1.8ConcurrentHashMap,细化锁的粒度的同时依旧保证线程安全 从Ato ...
分类:
其他好文 时间:
2020-05-12 20:50:28
阅读次数:
79
在看Collections工具类代码时,发现翻转数组的逻辑,感觉很有趣。思想:折半交换 public static void main(String[] args) { // TODO Auto-generated method stub int[] n = new int[] {1,2,3,4,5 ...
分类:
编程语言 时间:
2020-05-12 15:25:49
阅读次数:
63