如何在Android中从排序链表中删除重复元素?
此示例演示了如何在Android中从排序链表中删除重复元素。
步骤 1 − 在Android Studio中创建一个新项目,转到文件 ⇒ 新建项目,并填写所有必需的详细信息以创建一个新项目。
步骤 2 − 将以下代码添加到res/layout/activity_main.xml。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:gravity="center" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:id="@+id/text" android:textSize="30sp" android:layout_width="match_parent" android:layout_height="match_parent" /> </LinearLayout>
在上面的代码中,我们使用了TextView来显示没有重复元素的排序链表。
步骤 3 − 将以下代码添加到src/MainActivity.java
package com.example.myapplication; import android.os.Build; import android.os.Bundle; import android.support.annotation.RequiresApi; import android.support.v7.app.AppCompatActivity; import android.widget.TextView; import java.util.Collections; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.LinkedList; import java.util.Stack; public class MainActivity extends AppCompatActivity { @RequiresApi(api = Build.VERSION_CODES.P) @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); LinkedList<Integer> list=new LinkedList<>(); list.add(11); list.add(11); list.add(11); list.add(14); list.add(14); list.add(20); LinkedHashSet<Integer> hashSet=new LinkedHashSet<>(list); TextView textView = findViewById(R.id.text); textView.setText(hashSet.toString()); } }
让我们尝试运行您的应用程序。我假设您已将您的实际Android手机设备连接到您的电脑。要从Android Studio运行应用程序,请打开项目的活动文件之一,然后点击工具栏上的运行 图标。选择您的手机设备作为选项,然后检查您的手机设备,它将显示您的默认屏幕 -
点击此处下载项目代码
广告