如何在 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>
在上面的代码中,我们使用一个文本视图来显示排序后的堆栈。
步骤 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); Stack<Integer> stack = new Stack<>(); stack.add(1); stack.add(10); stack.add(9); stack.add(4); stack.add(3); stack.add(2); HashSet<Integer> hashSet=new HashSet<>(stack); TextView textView = findViewById(R.id.text); textView.setText(hashSet.toString()); } }
让我们尝试运行你的应用程序。我假设你已经将你的真实 Android 移动设备连接到计算机。要从 android studio 运行应用程序,请打开一个项目活动文件,然后单击工具栏上的运行 图标。选择你的移动设备作为选项,然后查看你的移动设备,它将显示你的默认屏幕 −
单击此处下载项目代码
广告