Develop a NetBeans application that illustrates the applicability of one sorting algorithm on a collection of 10 items. The algorithm should sort the items in descending order. The algorithm must work based on the principle of one of the four sorting algorithms studied during the semester. The collection of 10 items is defined and populated in the application code. You can decide the type and values of items stored in the collection. The algorithm must be implemented as part of a class called MyArrayList that extends the ArrayList class functionality with your sorting algorithm. [20 marks] 5. Extend the application implemented for Question 4 above to be able to measure the efficiency of the implemented sorting algorithm in term of number of comparisons performed by the algorithm. The application should display the total number of comparisons performed by the algorithm for a given collection of items. [10 marks] 6. In an Excel graph, plot the number of comparisons measured by the sorting algorithm when three different sizes of collection are considered. Submit your Excel file on Moodle. [20 marks]

时间: 2023-08-21 21:24:50 浏览: 148
Sure, I understand your question. You want me to develop a NetBeans application that demonstrates the use of one sorting algorithm on a collection of 10 items, sorting them in descending order. The algorithm should be based on one of the four sorting algorithms studied during the semester and should be implemented as part of a class called MyArrayList that extends the ArrayList class functionality with your sorting algorithm. Additionally, you want me to extend the application to measure the efficiency of the implemented sorting algorithm in terms of the number of comparisons performed by the algorithm, and to plot the number of comparisons measured by the sorting algorithm when three different sizes of collection are considered in an Excel graph. To start, let's define and populate the collection of 10 items in the NetBeans application code. We can use integers for the items stored in the collection. Here's an example of how the collection can be defined and populated: ``` import java.util.ArrayList; public class SortingDemo { public static void main(String[] args) { MyArrayList<Integer> list = new MyArrayList<Integer>(); list.add(5); list.add(2); list.add(10); list.add(8); list.add(1); list.add(7); list.add(9); list.add(3); list.add(4); list.add(6); System.out.println("Original list: " + list); list.sortDescending(); System.out.println("Sorted list: " + list); } } class MyArrayList<E extends Comparable<E>> extends ArrayList<E> { public void sortDescending() { // Insertion sort algorithm for (int i = 1; i < size(); i++) { E key = get(i); int j = i - 1; while (j >= 0 && get(j).compareTo(key) < 0) { set(j + 1, get(j)); j--; } set(j + 1, key); } } } ``` In the above code, we define a class called SortingDemo which contains a main method. Inside the main method, we create an instance of MyArrayList and add 10 integers to it. We then print out the original list and call the sortDescending method on the list to sort it in descending order. Finally, we print out the sorted list. The MyArrayList class extends the ArrayList class and defines a sortDescending method that implements the insertion sort algorithm to sort the list in descending order. Next, we need to extend the application to measure the efficiency of the sorting algorithm in terms of the number of comparisons performed by the algorithm. We can modify the MyArrayList class to keep track of the number of comparisons performed during the sorting process, like this: ``` class MyArrayList<E extends Comparable<E>> extends ArrayList<E> { private int comparisons; public void sortDescending() { comparisons = 0; // Insertion sort algorithm for (int i = 1; i < size(); i++) { E key = get(i); int j = i - 1; while (j >= 0 && get(j).compareTo(key) < 0) { set(j + 1, get(j)); j--; comparisons++; } set(j + 1, key); } } public int getComparisons() { return comparisons; } } ``` We added a private variable called comparisons to keep track of the number of comparisons performed during the sorting process. We initialize it to 0 at the start of the sortDescending method and increment it for each comparison performed. We also added a public method called getComparisons to retrieve the number of comparisons performed. Finally, we need to plot the number of comparisons measured by the sorting algorithm when three different sizes of collection are considered in an Excel graph. To do this, we can modify the SortingDemo class to create three different lists of different sizes and sort each of them, recording the number of comparisons performed for each sort. We can then export the data to an Excel file and create a graph with the data. Here's an example of the modified SortingDemo class: ``` import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.xssf.usermodel.XSSFWorkbook; public class SortingDemo { public static void main(String[] args) { MyArrayList<Integer> list1 = new MyArrayList<Integer>(); list1.add(5); list1.add(2); list1.add(10); list1.add(8); list1.add(1); list1.add(7); list1.add(9); list1.add(3); list1.add(4); list1.add(6); System.out.println("Original list 1: " + list1); list1.sortDescending(); System.out.println("Sorted list 1: " + list1); int comparisons1 = list1.getComparisons(); MyArrayList<Integer> list2 = new MyArrayList<Integer>(); for (int i = 0; i < 100; i++) { list2.add((int) (Math.random() * 100)); } System.out.println("Original list 2: " + list2); list2.sortDescending(); System.out.println("Sorted list 2: " + list2); int comparisons2 = list2.getComparisons(); MyArrayList<Integer> list3 = new MyArrayList<Integer>(); for (int i = 0; i < 1000; i++) { list3.add((int) (Math.random() * 100)); } System.out.println("Original list 3: " + list3); list3.sortDescending(); System.out.println("Sorted list 3: " + list3); int comparisons3 = list3.getComparisons(); System.out.println("Comparisons 1: " + comparisons1); System.out.println("Comparisons 2: " + comparisons2); System.out.println("Comparisons 3: " + comparisons3); try (XSSFWorkbook workbook = new XSSFWorkbook()) { FileOutputStream out = new FileOutputStream(new File("sorting.xlsx")); org.apache.poi.ss.usermodel.Sheet sheet = workbook.createSheet("Sorting"); Row headerRow = sheet.createRow(0); Cell cell0 = headerRow.createCell(0); cell0.setCellValue("Collection Size"); Cell cell1 = headerRow.createCell(1); cell1.setCellValue("Comparisons"); Row row1 = sheet.createRow(1); Cell cell10 = row1.createCell(0); cell10.setCellValue("10"); Cell cell11 = row1.createCell(1); cell11.setCellValue(comparisons1); Row row2 = sheet.createRow(2); Cell cell20 = row2.createCell(0); cell20.setCellValue("100"); Cell cell21 = row2.createCell(1); cell21.setCellValue(comparisons2); Row row3 = sheet.createRow(3); Cell cell30 = row3.createCell(0); cell30.setCellValue("1000"); Cell cell31 = row3.createCell(1); cell31.setCellValue(comparisons3); workbook.write(out); out.close(); System.out.println("Excel file written successfully."); } catch (IOException e) { e.printStackTrace(); } } } ``` In the above code, we create three different lists of sizes 10, 100, and 1000, and sort each of them using the MyArrayList class. We record the number of comparisons performed for each sort and print them to the console. We then create an Excel file and write the data to it, creating a graph with the data. To create the graph in Excel, open the sorting.xlsx file and select the data in cells A1:B3. Click on the Insert tab and select the type of graph you want to create. You can then customize the graph as needed.
阅读全文

相关推荐

最新推荐

recommend-type

Create a Java EE 6 Application with JSF 2, EJB 3.1, JPA, and NetBeans IDE 7

在本教程中,我们将深入探讨如何使用Java EE 6中的核心技术——JavaServer Faces 2.0 (JSF),Enterprise Java Beans 3.1 (包括Session Bean和Message-Driven Bean)以及Java Persistence API (JPA),结合NetBeans IDE...
recommend-type

Java MeteoInfo教程-V1.0.docx

【Java MeteoInfo教程-V1.0】是一个针对MeteoInfo Java版的二次开发教程,使用NetBeans IDE 7.3作为开发环境。这个教程适用于已经安装了Java SE开发工具包JDK 6 Update 26或更高版本,或者JDK 7 Update 10或更高版本...
recommend-type

韩顺平java从入门到精通视频教程(全94讲)学习笔记整理(齐全).docx(446页那个)

初学者通常从简单的文本编辑器(如记事本)开始,然后逐渐过渡到高级的集成开发环境(IDE),如Eclipse、NetBeans等。这些IDE提供了丰富的功能,有助于提高开发效率。 **Java程序的生命周期** 1. **编写源文件**:...
recommend-type

韩顺平java从入门到精通视频教程(全94讲)学习笔记整理(齐全).docx

* 记事本、JCreator、JBuilder、NetBeans、Eclipse 等开发工具的介绍 * 如何选择合适的开发工具 Java 语言的历史 * Java 语言的诞生和发展 * James Gosling 和 Sun 公司的贡献 * Java 语言的版本发展历程 Java ...
recommend-type

NetBeans IDE 7.0安装使用说明.docx

NetBeans IDE 7.0 是一个强大的集成开发环境,尤其针对C/C++开发者,它支持在多种操作系统上构建和调试应用程序。NetBeans IDE的核心特性包括模块化的Java编程基础,允许跨平台兼容性,如Windows、Macintosh OS X、...
recommend-type

Elasticsearch核心改进:实现Translog与索引线程分离

资源摘要信息:"Elasticsearch是一个基于Lucene构建的开源搜索引擎。它提供了一个分布式多用户能力的全文搜索引擎,基于RESTful web接口。Elasticsearch是用Java语言开发的,并作为Apache许可条款下的开源项目发布,是当前流行的企业级搜索引擎。设计用于云计算中,能够达到实时搜索,稳定,可靠,快速,安装使用方便。" "Elasticsearch的索引线程是处理索引操作的重要部分,负责处理数据的写入、更新和删除等操作。但是,在处理大量数据和高并发请求时,如果索引线程处理速度过慢,就会导致数据处理的延迟,影响整体性能。因此,Elasticsearch采用了事务日志(translog)机制来提高索引操作的效率和可靠性。" "Elasticsearch的事务日志(translog)是一种持久化存储机制,用于记录所有未被持久化到分片中的索引操作。在发生故障或系统崩溃时,事务日志可以确保所有索引操作不会丢失,保证数据的完整性。每个分片都有自己的事务日志文件。" "在Elasticsearch的早期版本中,事务日志的操作和索引线程的操作是在同一个线程中完成的,这可能会导致性能瓶颈。为了解决这个问题,Elasticsearch将事务日志的操作从索引线程中分离出去,使得索引线程可以专注于数据的索引操作,而事务日志的操作可以独立地进行。这样可以大大提高了Elasticsearch的索引性能。" "但是,事务日志的操作是独立于索引操作的,这就需要保证事务日志的操作不会影响到索引操作的性能。因此,在将事务日志从索引线程分离出去的同时,Elasticsearch也引入了一些优化策略,比如批量写入事务日志,减少磁盘I/O操作,以及优化事务日志的数据结构,提高读写效率等。" "需要注意的是,虽然事务日志的分离可以提高索引操作的性能,但是也会增加系统的复杂度和维护难度。因此,开发者在使用这个功能时,需要充分理解其原理和影响,才能确保系统的稳定运行。" "此外,由于这个功能还处于测试和学习阶段,尚未被广泛应用于生产环境,所以开发者在使用时需要谨慎,避免对生产环境造成影响。" "总的来说,Elasticsearch的事务日志的分离是一个重要的优化,可以大大提升索引操作的性能,但是在使用时也需要充分考虑其带来的影响,才能确保系统的稳定运行。"
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

病房呼叫系统设计基础:7个关键架构策略让你一步入门

![病房呼叫系统设计基础:7个关键架构策略让你一步入门](https://zektek.com.mx/wp-content/uploads/2021/03/diagram-enfermeria.jpg) # 摘要 本文对病房呼叫系统进行了深入的概述、需求分析、架构设计、功能实现以及实践应用案例的探讨。通过分析系统架构的重要性、设计原则、模块划分和数据流,确保了系统的高效运行和优化。本文进一步探讨了呼叫信号传输技术、显示与反馈机制、系统安全性与可靠性设计,并分析了系统部署环境、安装调试流程和维护升级策略。最后,文章展望了病房呼叫系统的未来发展趋势,包括智能化、技术融合以及法规遵从与伦理考量,并
recommend-type

Selenium如何获取Shadow DOM下的元素属性?

在Selenium中,获取Shadow DOM下的元素属性通常涉及到两步:首先找到元素,然后访问它的属性。由于Shadow DOM元素默认是不可见的(对于非JavaScript开发者),所以我们需要用JavaScript脚本来获取其内容。 下面是一个示例,展示如何通过Selenium的`execute_script`函数获取Shadow DOM元素的属性: ```python from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from sel
recommend-type

分享个人Vim与Git配置文件管理经验

资源摘要信息:"conffiles:我的vim和git配置文件" 在给定的文件信息中,我们可以梳理出一些关键知识点,这些知识点主要涉及到了Vim编辑器和Git版本控制系统,同时涉及到了Linux环境下的一些文件操作知识。 首先,文件标题提到了"conffiles",这通常是指配置文件(configuration files)的缩写。配置文件是软件运行时用于读取用户设置或其他运行参数的文件,它们允许软件按照用户的特定需求进行工作。在本例中,这些配置文件是与Vim编辑器和Git版本控制系统相关的。 Vim是一种流行的文本编辑器,是UNIX系统中vi编辑器的增强版本。Vim不仅支持代码编辑,还支持插件扩展、多种模式(命令模式、插入模式、视觉模式等)和高度可定制化。在这个上下文中,"我的vim"可能指的是使用者为Vim定制的一套配置文件,这些配置文件可能包含键位映射、颜色主题、插件设置、用户界面布局和其他个性化选项。 Git是一个版本控制系统,用于跟踪计算机文件的更改和协作。Git是分布式版本控制,这意味着每个开发者都有一个包含完整项目历史的仓库副本。Git常用于代码的版本控制管理,它允许用户回滚到之前的版本、合并来自不同贡献者的代码,并且有效地管理代码变更。在这个资源中,"git conffiles"可能表示与Git用户相关的配置文件,这可能包括用户凭证、代理设置、别名以及其他一些全局Git配置选项。 描述部分提到了使用者之前使用的编辑器是Vim,但现在转向了Emacs。尽管如此,该用户仍然保留了以前的Vim配置文件。接着,描述中提到了一个安装脚本命令"sh ./.vim/install.sh"。这是一个shell脚本,通常用于自动化安装或配置过程。在这里,这个脚本可能用于创建符号链接(symbolic links),将旧的Vim配置文件链接到当前使用的Emacs配置文件夹中,使用户能够继续使用他们熟悉且习惯的Vim配置。 标签"Vimscript"表明这是一个与Vim脚本相关的资源,Vim脚本是一种专门用于自定义和扩展Vim功能的编程语言。Vimscript可以用于编写宏、自定义函数、插件等。 最后,文件名称列表"conffiles-master"可能表明这个压缩包文件包含了一系列的主配置文件。在Git版本控制的术语中,"master"(现在通常称为"main")分支是项目仓库的默认分支。这暗示了这些配置文件可能是该用户项目的主配置文件,这些配置文件被包含在名为"conffiles-master"的压缩包中。 综上所述,这个资源可能是一个集合了Vim编辑器和Git版本控制系统的个人配置文件的压缩包,附带一个用于符号链接旧Vim配置的安装脚本,它能够帮助用户在转向其他工具时仍然能够使用之前的个性化设置。这个资源对于想要了解如何管理和迁移配置文件的用户具有一定的参考价值。