- 浏览: 194534 次
- 性别:
- 来自: 武汉
文章分类
最新评论
-
shuaijie506:
以前有点疑惑,现在终于明白了,线程安全是没问题的,想想也是,如 ...
jsp自定义标签 线程安全 -
Laster2800:
原来如此,想不到传统的标记处理器也是线程安全的,受教了。
jsp自定义标签 线程安全 -
GoingForward:
这篇文章是不是可以浓缩为下面几点:1.在非静态内部类中不可以声 ...
static class -
wellse:
呵呵,就是这样!!要的就是这个效果
jsp自定义标签 线程安全 -
xiaohuafyle:
JNDI
从大学到现在,参加过很多面试,经常会被问到一些基本的算法题,而大部分算法的理论及思想,我们曾经都能倒背如流,并且也用语言实现过,可由于在项目开发中应用的比较少,久而久之就忘记了,造成在面试中很尴尬的局面,然后回来查阅相关资料才发现就那么一回事,怎么在面试中就卡壳了呢?在此写下我在面试中经常被问到的一些基本的算法,全当复习。
一、冒泡排序
- package sort.bubble;
- import java.util.Random;
- /**
- * 依次比较相邻的两个数,将小数放在前面,大数放在后面
- * 冒泡排序,具有稳定性
- * 时间复杂度为O(n^2)
- * 不及堆排序,快速排序O(nlogn,底数为2)
- * @author liangge
- *
- */
- public class Main {
- public static void main(String[] args) {
- Random ran = new Random();
- int[] sort = new int[10];
- for(int i = 0 ; i < 10 ; i++){
- sort[i] = ran.nextInt(50);
- }
- System.out.print("排序前的数组为");
- for(int i : sort){
- System.out.print(i+" ");
- }
- buddleSort(sort);
- System.out.println();
- System.out.print("排序后的数组为");
- for(int i : sort){
- System.out.print(i+" ");
- }
- }
- /**
- * 冒泡排序
- * @param sort
- */
- private static void buddleSort(int[] sort){
- for(int i=1;i<sort.length;i++){
- for(int j=0;j<sort.length-i;j++){
- if(sort[j]>sort[j+1]){
- int temp = sort[j+1];
- sort[j+1] = sort[j];
- sort[j] = temp;
- }
- }
- }
- }
- }
package sort.bubble; import java.util.Random; /** * 依次比较相邻的两个数,将小数放在前面,大数放在后面 * 冒泡排序,具有稳定性 * 时间复杂度为O(n^2) * 不及堆排序,快速排序O(nlogn,底数为2) * @author liangge * */ public class Main { public static void main(String[] args) { Random ran = new Random(); int[] sort = new int[10]; for(int i = 0 ; i < 10 ; i++){ sort[i] = ran.nextInt(50); } System.out.print("排序前的数组为"); for(int i : sort){ System.out.print(i+" "); } buddleSort(sort); System.out.println(); System.out.print("排序后的数组为"); for(int i : sort){ System.out.print(i+" "); } } /** * 冒泡排序 * @param sort */ private static void buddleSort(int[] sort){ for(int i=1;i<sort.length;i++){ for(int j=0;j<sort.length-i;j++){ if(sort[j]>sort[j+1]){ int temp = sort[j+1]; sort[j+1] = sort[j]; sort[j] = temp; } } } } }
二、选择排序
- package sort.select;
- import java.util.Random;
- /**
- * 选择排序
- * 每一趟从待排序的数据元素中选出最小(或最大)的一个元素,
- * 顺序放在已排好序的数列的最后,直到全部待排序的数据元素排完。
- * 选择排序是不稳定的排序方法。
- * @author liangge
- *
- */
- public class Main {
- public static void main(String[] args) {
- Random ran = new Random();
- int[] sort = new int[10];
- for (int i = 0; i < 10; i++) {
- sort[i] = ran.nextInt(50);
- }
- System.out.print("排序前的数组为");
- for (int i : sort) {
- System.out.print(i + " ");
- }
- selectSort(sort);
- System.out.println();
- System.out.print("排序后的数组为");
- for (int i : sort) {
- System.out.print(i + " ");
- }
- }
- /**
- * 选择排序
- * @param sort
- */
- private static void selectSort(int[] sort){
- for(int i =0;i<sort.length-1;i++){
- for(int j = i+1;j<sort.length;j++){
- if(sort[j]<sort[i]){
- int temp = sort[j];
- sort[j] = sort[i];
- sort[i] = temp;
- }
- }
- }
- }
- }
package sort.select; import java.util.Random; /** * 选择排序 * 每一趟从待排序的数据元素中选出最小(或最大)的一个元素, * 顺序放在已排好序的数列的最后,直到全部待排序的数据元素排完。 * 选择排序是不稳定的排序方法。 * @author liangge * */ public class Main { public static void main(String[] args) { Random ran = new Random(); int[] sort = new int[10]; for (int i = 0; i < 10; i++) { sort[i] = ran.nextInt(50); } System.out.print("排序前的数组为"); for (int i : sort) { System.out.print(i + " "); } selectSort(sort); System.out.println(); System.out.print("排序后的数组为"); for (int i : sort) { System.out.print(i + " "); } } /** * 选择排序 * @param sort */ private static void selectSort(int[] sort){ for(int i =0;i<sort.length-1;i++){ for(int j = i+1;j<sort.length;j++){ if(sort[j]<sort[i]){ int temp = sort[j]; sort[j] = sort[i]; sort[i] = temp; } } } } }
三、快速排序
- package sort.quick;
- /**
- * 快速排序 通过一趟排序将要排序的数据分割成独立的两部分, 其中一部分的所有数据都比另外一部分的所有数据都要小,
- * 然后再按此方法对这两部分数据分别进行快速排序, 整个排序过程可以递归进行,以此达到整个数据变成有序序列。
- * @author liangge
- *
- */
- public class Main {
- public static void main(String[] args) {
- int[] sort = { 54, 31, 89, 33, 66, 12, 68, 20 };
- System.out.print("排序前的数组为:");
- for (int data : sort) {
- System.out.print(data + " ");
- }
- System.out.println();
- quickSort(sort, 0, sort.length - 1);
- System.out.print("排序后的数组为:");
- for (int data : sort) {
- System.out.print(data + " ");
- }
- }
- /**
- * 快速排序
- * @param sort 要排序的数组
- * @param start 排序的开始座标
- * @param end 排序的结束座标
- */
- public static void quickSort(int[] sort, int start, int end) {
- // 设置关键数据key为要排序数组的第一个元素,
- // 即第一趟排序后,key右边的数全部比key大,key左边的数全部比key小
- int key = sort[start];
- // 设置数组左边的索引,往右移动判断比key大的数
- int i = start;
- // 设置数组右边的索引,往左移动判断比key小的数
- int j = end;
- // 如果左边索引比右边索引小,则还有数据没有排序
- while (i < j) {
- while (sort[j] > key && j > start) {
- j--;
- }
- while (sort[i] < key && i < end) {
- i++;
- }
- if (i < j) {
- int temp = sort[i];
- sort[i] = sort[j];
- sort[j] = temp;
- }
- }
- // 如果左边索引比右边索引要大,说明第一次排序完成,将sort[j]与key对换,
- // 即保持了key左边的数比key小,key右边的数比key大
- if (i > j) {
- int temp = sort[j];
- sort[j] = sort[start];
- sort[start] = temp;
- }
- //递归调用
- if (j > start && j < end) {
- quickSort(sort, start, j - 1);
- quickSort(sort, j + 1, end);
- }
- }
- }
package sort.quick; /** * 快速排序 通过一趟排序将要排序的数据分割成独立的两部分, 其中一部分的所有数据都比另外一部分的所有数据都要小, * 然后再按此方法对这两部分数据分别进行快速排序, 整个排序过程可以递归进行,以此达到整个数据变成有序序列。 * @author liangge * */ public class Main { public static void main(String[] args) { int[] sort = { 54, 31, 89, 33, 66, 12, 68, 20 }; System.out.print("排序前的数组为:"); for (int data : sort) { System.out.print(data + " "); } System.out.println(); quickSort(sort, 0, sort.length - 1); System.out.print("排序后的数组为:"); for (int data : sort) { System.out.print(data + " "); } } /** * 快速排序 * @param sort 要排序的数组 * @param start 排序的开始座标 * @param end 排序的结束座标 */ public static void quickSort(int[] sort, int start, int end) { // 设置关键数据key为要排序数组的第一个元素, // 即第一趟排序后,key右边的数全部比key大,key左边的数全部比key小 int key = sort[start]; // 设置数组左边的索引,往右移动判断比key大的数 int i = start; // 设置数组右边的索引,往左移动判断比key小的数 int j = end; // 如果左边索引比右边索引小,则还有数据没有排序 while (i < j) { while (sort[j] > key && j > start) { j--; } while (sort[i] < key && i < end) { i++; } if (i < j) { int temp = sort[i]; sort[i] = sort[j]; sort[j] = temp; } } // 如果左边索引比右边索引要大,说明第一次排序完成,将sort[j]与key对换, // 即保持了key左边的数比key小,key右边的数比key大 if (i > j) { int temp = sort[j]; sort[j] = sort[start]; sort[start] = temp; } //递归调用 if (j > start && j < end) { quickSort(sort, start, j - 1); quickSort(sort, j + 1, end); } } }
四、插入排序
- package sort.insert;
- /**
- * 直接插入排序
- * 将一个数据插入到已经排好序的有序数据中,从而得到一个新的、个数加一的有序数据
- * 算法适用于少量数据的排序,时间复杂度为O(n^2)。是稳定的排序方法。
- */
- import java.util.Random;
- public class DirectMain {
- public static void main(String[] args) {
- Random ran = new Random();
- int[] sort = new int[10];
- for (int i = 0; i < 10; i++) {
- sort[i] = ran.nextInt(50);
- }
- System.out.print("排序前的数组为");
- for (int i : sort) {
- System.out.print(i + " ");
- }
- directInsertSort(sort);
- System.out.println();
- System.out.print("排序后的数组为");
- for (int i : sort) {
- System.out.print(i + " ");
- }
- }
- /**
- * 直接插入排序
- *
- * @param sort
- */
- private static void directInsertSort(int[] sort) {
- for (int i = 1; i < sort.length; i++) {
- int index = i - 1;
- int temp = sort[i];
- while (index >= 0 && sort[index] > temp) {
- sort[index + 1] = sort[index];
- index--;
- }
- sort[index + 1] = temp;
- }
- }
- }
package sort.insert; /** * 直接插入排序 * 将一个数据插入到已经排好序的有序数据中,从而得到一个新的、个数加一的有序数据 * 算法适用于少量数据的排序,时间复杂度为O(n^2)。是稳定的排序方法。 */ import java.util.Random; public class DirectMain { public static void main(String[] args) { Random ran = new Random(); int[] sort = new int[10]; for (int i = 0; i < 10; i++) { sort[i] = ran.nextInt(50); } System.out.print("排序前的数组为"); for (int i : sort) { System.out.print(i + " "); } directInsertSort(sort); System.out.println(); System.out.print("排序后的数组为"); for (int i : sort) { System.out.print(i + " "); } } /** * 直接插入排序 * * @param sort */ private static void directInsertSort(int[] sort) { for (int i = 1; i < sort.length; i++) { int index = i - 1; int temp = sort[i]; while (index >= 0 && sort[index] > temp) { sort[index + 1] = sort[index]; index--; } sort[index + 1] = temp; } } }
五、顺便贴个二分搜索法
- package search.binary;
- public class Main {
- public static void main(String[] args) {
- int[] sort = {1,2,3,4,5,6,7,8,9,10};
- int mask = binarySearch(sort,6);
- System.out.println(mask);
- }
- /**
- * 二分搜索法,返回座标,不存在返回-1
- * @param sort
- * @return
- */
- private static int binarySearch(int[] sort,int data){
- if(data<sort[0] || data>sort[sort.length-1]){
- return -1;
- }
- int begin = 0;
- int end = sort.length;
- int mid = (begin+end)/2;
- while(begin <= end){
- mid = (begin+end)/2;
- if(data > sort[mid]){
- begin = mid + 1;
- }else if(data < sort[mid]){
- end = mid - 1;
- }else{
- return mid;
- }
- }
- return -1;
- }
- }
发表评论
-
Jetty例子
2010-11-07 22:04 1542import java.io.IOException; ... -
IReport一些注意
2010-09-05 22:02 1408用的是 Ireport2.0版本 更高版本可能没有这个问题 ... -
jsp自定义标签 线程安全
2010-08-28 14:21 4053我们在编写自定义标签的时候设置属性如下 public cl ... -
[转]Java类加载原理解析
2009-11-04 21:47 1249转载 Java 类加载原理解析 ... -
线程上下文类加载器
2009-11-04 21:46 5596线程上下文类加载器 问题:何时使用Thread. ... -
JDBC Sybase
2009-11-04 21:02 4067import java.sql.Connection; im ... -
JDK 5.0 泛型 动态参数 枚举
2009-11-04 21:02 3108import java.util.ArrayList;impo ... -
再看heap 和stack,还有多了解内存
2009-11-03 16:28 1201heap 1.堆石一个“运行时”数据区,类实例化的对象就是从 ... -
java中读取Properties文件
2009-10-23 12:58 1576java 中读取Properties 文 ... -
JNI
2009-10-22 22:15 1462... -
Hibernate经典文章
2009-10-19 12:37 962Lazy Loading (Load&Get) ... -
JNDI
2009-10-15 14:15 2675最近写书,写到JNDI,到处查资料,发现所有的中文资料都对JN ... -
JDBC连接各种数据库
2009-10-14 10:13 995常用JDBC连接数据库方法总结如下: 一、DB2 Cl ... -
java并发的一些题目
2009-09-24 23:41 1075a 回答 结果又一下 几种情况 execute here Ca ... -
static class
2009-08-19 14:55 18180在一个类中创建另外 ... -
C++ 对象参数传递
2009-08-07 12:08 1688#include<iostream.h> cla ... -
递归与间接递归
2009-08-07 11:02 49351. 介绍 递归技术允许 ... -
concurrent lib的学习
2009-07-13 17:51 10681.关于BlockingQueue的学习,这是一个阻塞的队列, ... -
应该看的书籍
2009-07-12 21:33 10081.代码大全 2.人月神话 3.设计模式 4.网格计算 ... -
错误总结
2009-07-02 17:46 7901.static inner class和 non-s ...
相关推荐
在准备面试时,掌握各种排序算法是至关重要的,特别是对于那些目标是软件开发或系统设计职位的求职者。本文将详细介绍C++和C语言中7种常见的排序算法,旨在帮助你提升技能,顺利通过面试。 1. 冒泡排序(Bubble ...
### 各种查找与排序算法详解 #### 一、查找算法 查找算法是计算机科学中最基本也是最常用的一类算法,主要用于...在笔试和面试中,熟练掌握这些算法不仅能够展示候选人的编程能力,还能体现其对算法理论的深入理解。
【IT面试笔试中的排序算法Java实现】 在IT面试和笔试中,掌握各种排序算法的实现是必不可少的技能。本文将详细介绍几种经典的排序算法,并提供Java语言的实现代码,包括冒泡排序、插入排序、选择排序和快速排序。...
"常见面试算法题"这一主题涵盖了编程面试的核心部分,旨在帮助求职者准备这些关键的挑战。下面将详细讨论相关知识点。 1. **算法基础**:算法是解决问题的步骤集合,面试中常见的包括排序算法(如冒泡、选择、插入...
一个堆排序算法 c++写的 逻辑相同 可自行 改为java 写一个堆排序算法 c++ 写一个堆排序算法 c++ 写一个堆排序算法 c++ 写一个堆排序算法 c++ 写一个堆排序算法 c++ 写一个堆排序算法 c++ 写一个堆排序算法 c++ 写一...
《程序员面试算法大全》这份资料集是专门为准备面试的程序员们精心整理的资源,涵盖了大量常见面试题目的实例和解析,旨在帮助求职者提升在面试中的表现。由于标签为"test",我们可以推断这份资料主要关注的是测试...
同时,这些算法也是面试和教学中常见的题目,掌握它们有助于在技术面试中脱颖而出。 总之,这个Java实现的排序查找算法集合是一份宝贵的资源,对于初学者来说,可以通过阅读和实践代码来加深对算法的理解;对于经验...
在IT领域,排序算法和字符操作是两个非常基础且重要的概念,经常出现在面试和技术讨论中。下面我们将深入探讨这两个主题。 首先,让我们关注排序算法。排序是计算机科学中最基本的操作之一,它涉及到将一组数据按照...
2. 冒泡排序 3. 1~100共一百个自然数,放入一个只有99个元素的数组中,找出没有被放入数组的这个数; 4. 字符串的反转输出 5. 截取字符串, 如果该字符串是“abc我的”,当截取的字节数是3时候就是"abc',如果是4,...
在编程面试中,掌握这些排序算法的理解和实现至关重要,因为它们不仅考察了你的算法基础,还测试了你的逻辑思维和问题解决能力。在实际应用中,选择合适的排序算法能够极大地提高程序的效率和性能。 总结一下,这四...
总之,《2024年互联网面试算法常见100题精析.pdf》是一本针对互联网面试算法题目学习的优秀参考资料。它不仅仅提供了题目的解法,更重要的是,它帮助求职者深入理解每道题目的算法思想和解题技巧。通过这种方式,...
《Python程序员面试算法宝典》是一本专门为Python程序员面试准备的指南,涵盖了广泛的数据结构和算法知识,旨在帮助读者在面试中展现出扎实的编程基础和解决问题的能力。这本书以PDF格式包含在"Python程序员面试算法...
C++数据结构排序算法总结 在计算机科学中,排序算法是最基本和最重要的算法之一。在实际应用中,排序算法广泛应用于各种领域,如数据分析、机器学习、数据库管理等。C++数据结构排序算法总结将为您提供详细的排序...
在计算机科学领域,排序算法是数据结构中至关重要的一部分,它涉及到如何有效地重新排列一组数据,使其按照特定的顺序(如升序或降序)排列。本资料“八大排序算法C语言”聚焦于八种常见的排序算法,每种都有C语言...
算法分析与设计排序算法比较 通过对各种排序算法的思想、算法的分析,探究它的使用范围以及时间复杂度和空间复杂度。 冒泡排序算法 冒泡排序算法思想简单描述:在要排序的一组数中,对当前还未排好序的范围内的...
本"Scala程序员面试算法宝典代码"集合了多种常见算法的实现,旨在帮助求职者提升面试成功率。 1. **基础数据结构** - 数组:数组是最基本的数据结构,用于存储固定大小的同类型元素集合。在Scala中,可以使用Array...
1. **排序算法**:快速排序、归并排序、堆排序、冒泡排序、插入排序、选择排序等,这些都是面试中常见的基础题目。理解它们的时间和空间复杂度,以及在不同场景下的适用性,是展示算法基础的关键。 2. **搜索算法**...
在IT面试中,排序算法是常见的话题,它们是计算机科学基础的重要组成部分,尤其对于数据处理和算法优化至关重要。以下是对几种经典排序算法的详细解析: 1. **插入排序(Insertion Sort)** 插入排序是一种简单的...
腾讯算法面试题:64匹马8个跑道需要多少轮才能选出最快的四匹(详解),排序算法数据结构 知识点1:排序算法的应用场景 在腾讯算法面试题中,要求选出64匹马中最快的四匹,需要使用排序算法来解决这个问题。排序...