Android第四次面试总结(基础算法篇)

打印 上一主题 下一主题

主题 936|帖子 936|积分 2808

一、反转链表
  1. // 定义链表节点类
  2. class ListNode {
  3.     // 节点存储的值
  4.     int val;
  5.     // 指向下一个节点的引用
  6.     ListNode next;
  7.     // 构造函数,用于初始化节点的值
  8.     ListNode(int x) { val = x; }
  9. }
  10. class Solution {
  11.     // 反转链表的方法
  12.     public ListNode reverseList(ListNode head) {
  13.         // 初始化前一个节点为 null
  14.         ListNode prev = null;
  15.         // 初始化当前节点为头节点
  16.         ListNode current = head;
  17.         // 遍历链表,直到当前节点为 null
  18.         while (current != null) {
  19.             // 保存当前节点的下一个节点
  20.             ListNode nextNode = current.next;
  21.             // 反转当前节点的指针,指向前一个节点
  22.             current.next = prev;
  23.             // 更新前一个节点为当前节点
  24.             prev = current;
  25.             // 更新当前节点为下一个节点
  26.             current = nextNode;
  27.         }
  28.         // 返回反转后链表的头节点
  29.         return prev;
  30.     }
  31.     public static void main(String[] args) {
  32.         // 创建链表 1->2->3->4->5
  33.         ListNode head = new ListNode(1);
  34.         head.next = new ListNode(2);
  35.         head.next.next = new ListNode(3);
  36.         head.next.next.next = new ListNode(4);
  37.         head.next.next.next.next = new ListNode(5);
  38.         // 创建 Solution 类的实例
  39.         Solution solution = new Solution();
  40.         // 反转链表
  41.         ListNode reversedHead = solution.reverseList(head);
  42.         // 打印反转后的链表
  43.         ListNode current = reversedHead;
  44.         while (current != null) {
  45.             System.out.print(current.val);
  46.             if (current.next != null) {
  47.                 System.out.print(" -> ");
  48.             }
  49.             current = current.next;
  50.         }
  51.     }
  52. }
复制代码
二、viewgroup的广度搜刮遍历子view(不限制二叉树) 
  1. import android.view.View;
  2. import android.view.ViewGroup;
  3. import java.util.LinkedList;
  4. import java.util.Queue;
  5. /**
  6. * 该类提供了一个静态方法,用于对 ViewGroup 进行广度优先搜索(BFS)遍历。
  7. * 广度优先搜索是一种按层次顺序遍历 ViewGroup 及其子 View 的算法。
  8. */
  9. public class ViewGroupBFS {
  10.     /**
  11.      * 对传入的 ViewGroup 进行广度优先搜索遍历。
  12.      * 遍历过程中会打印每个 View 的简单类名,你可以根据实际需求修改处理逻辑。
  13.      *
  14.      * @param viewGroup 要进行遍历的根 ViewGroup
  15.      */
  16.     public static void traverseViewGroupBFS(ViewGroup viewGroup) {
  17.         // 创建一个队列,用于存储待遍历的 View。
  18.         // 使用 LinkedList 实现 Queue 接口,方便进行入队和出队操作。
  19.         Queue<View> queue = new LinkedList<>();
  20.         // 将传入的根 ViewGroup 添加到队列中,作为遍历的起始点。
  21.         queue.add(viewGroup);
  22.         // 当队列不为空时,继续进行遍历操作。
  23.         while (!queue.isEmpty()) {
  24.             // 从队列的头部取出一个 View 进行处理。
  25.             // poll 方法会移除并返回队列的头部元素,如果队列为空则返回 null。
  26.             View currentView = queue.poll();
  27.             // 处理当前取出的 View。这里只是简单地打印该 View 的简单类名。
  28.             // 你可以根据实际需求修改这部分逻辑,例如更新 UI、执行特定操作等。
  29.             System.out.println("View: " + currentView.getClass().getSimpleName());
  30.             // 检查当前 View 是否为 ViewGroup 类型。
  31.             // 如果是 ViewGroup 类型,说明它可能包含子 View,需要进一步遍历其子 View。
  32.             if (currentView instanceof ViewGroup) {
  33.                 // 将当前 View 强制转换为 ViewGroup 类型,以便访问其与子 View 相关的方法。
  34.                 ViewGroup currentViewGroup = (ViewGroup) currentView;
  35.                 // 获取当前 ViewGroup 包含的子 View 的数量。
  36.                 int childCount = currentViewGroup.getChildCount();
  37.                 // 遍历当前 ViewGroup 的所有子 View。
  38.                 for (int i = 0; i < childCount; i++) {
  39.                     // 获取当前索引位置的子 View。
  40.                     // getChildAt 方法用于根据索引获取 ViewGroup 中的子 View。
  41.                     View childView = currentViewGroup.getChildAt(i);
  42.                     // 将获取到的子 View 添加到队列的尾部,以便后续进行遍历。
  43.                     queue.add(childView);
  44.                 }
  45.             }
  46.         }
  47.     }
  48. }   
复制代码
这是我在Android面试中遇到的算法题 ,盼望可以对你有所帮助!!!

感谢观看!!! 


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

涛声依旧在

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表