如何在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執行應用程式,請開啟專案的活動檔案之一,然後點選工具欄上的執行 圖示。選擇您的手機裝置作為選項,然後檢查您的手機裝置,它將顯示您的預設螢幕 -

點選此處下載專案程式碼

更新於: 2019年7月30日

237 次瀏覽

開啟你的職業生涯

透過完成課程獲得認證

開始學習
廣告

© . All rights reserved.