首页 > TAG信息列表 > TheList

js基本类型和引用类型

一、JavaScript中值的类型 JavaScript中的值分为2大类:基本类型和引用类型。每种类型下面又分为5种类型。 基本类型: 数字类型:Number;字符串类型:String;布尔类型:Boolean(true和false);Undefined;Null。 引用类型: 函数、数组、日期、正则、错误。 注意:所有的引用类型都是对象,也

二分查找算法python实现

二分查找算法: 用于在有序数组中快速查找所需要的值,前提是数组已经排序 python代码实现: def binary_search(thelist, item): low = 0 high = len(thelist) - 1 while low <= high: mid = int((low + high) / 2) if thelist[mid] == item: return mid eli

面试算法题2——在大量重复数据中找到不重复数据

我的解法(Python3) def findRepeat(lis, repeat): if len(lis) == 2: if repeat == -1: return repeat return lis[0] if lis[0] != repeat else lis[1] if len(lis) == 1: if repeat == -1: return repeat

数据结构——Java实现单链表

一、分析   单链表是一种链式存取的数据结构,用一组地址任意的存储单元存放线性表中的数据元素。链表中的数据是以结点来表示的,每个结点由元素和指针构成。在Java中,我们可以将单链表定义成一个类,单链表的基本操作即是类的方法,而结点就是一个个实例化的对象,每个对象中都有“元素值

python 中如何判断list中是否包含某个元素

在python中可以通过in和not in关键字来判读一个list中是否包含一个元素 theList = ['a','b','c'] if 'a' in theList: print 'a in the list' else: print 'a is not in the list' if 'd' not in theList: print