Data Structures & Algorithms in Java ---- Arrays

1、Summary

• Arrays in Java are objects, created with the new  operator. 

 

• Unordered arrays offer fast insertion but slow searching and deletion. 

  
• Wrapping an array in a class protects the array from being inadvertently altered.   
  
• A class interface comprises the methods (and occasionally fields)  that the class user can access.  
  
• A class interface can be designed to make things simple for the class user.  
  
• A binary search can be applied to an ordered array.   
  
• The logarithm to the base B of a number A is (roughly) the number of times you can divide A by B before the result is less than 1.   
  
• Linear searches require time proportional to the number of items in an array.   
  
• Binary searches require time proportional to the logarithm of the number of items.   
  
• Big O notation provides a convenient way to compare the speed of algorithms.   
  
• An algorithm that runs in O(1) time is the best, O(log N) is good, O(N) is fair, and O(N2)  is pretty bad.  


2、Big O notation

Automobiles are divided by size into several categories: subcompacts, compacts, midsize, and so on. These categories provide a quick idea what size car you're talking about, without needing to mention actual dimensions. Similarly, it's useful to have a shorthand way to say how efficient a computer  algorithm is. In computer science, this rough measure is called Big O notation. 


3、Binary Search with the find() Method  

	public int find(double searchKey)
	{
		int lowerBound = 0;

		int upperBound = nElems - 1;

		int curIn;

		while (true)
		{
			curIn = (lowerBound + upperBound) / 2;

			if (a[curIn] == searchKey)
			{
				return curIn; // found it
			}
			else if (lowerBound > upperBound)
			{
				return nElems; // can't find it
			}
			else // divide range
			{
				if (a[curIn] < searchKey)
				{
					lowerBound = curIn + 1; // it's in upper half
				}
				else
				{
					upperBound = curIn - 1; // it's in lower half
				}

			} // end else divide range

		} // end while

	} // end find()


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值