哈希表、散列
242.有效的细目异位词
1.解法一:哈希表
因为一共就26个字幕,首先就创建一个26个字母频次的数组存储每一个元素出现的次数。
class Solution {
public boolean isAnagram(String s, String t) {
if (s.length() != t.length()) return false;
int[] alpha = new int[26];
for (int i = 0;i < s.length();i ++) {
alpha[s.charAt(i) - 'a'] ++;
alpha[t.charAt(i) - 'a'] --;
}
for (int i : alpha) {
if (i != 0) return false;
}
return true;
}
}
2.解法二:排序再比较
class Solution {
public boolean isAnagram(String s, String t) {
if (s.length() != t.length()) return false;
char[] sArr = s.toCharArray();
char[] tArr = t.toCharArray();
// 先排序,再比较
Arrays.sort(sArr);
Arrays.sort(tArr);
for (int i = 0;i < sArr.length;i ++) {
if (sArr[i] != tArr[i]) return false;
}
return true;
}
}
49.字母异位词分组
1.解法一
class Solution {
public List<List<String>> groupAnagrams(String[] strs) {
if (strs.length == 0) return new ArrayList<>();
// 键:排序字符串 值:所有的异位词
Map<String,List> map = new HashMap<>();
for (String str : strs) {
// 先转成字符数组再排序,然后再转成字符串
char[] ca = str.toCharArray();
Arrays.sort(ca);
String key = String.valueOf(ca);
if (!map.containsKey(key)) map.put(key, new ArrayList());
map.get(key).add(str);
}
return new ArrayList(map.values());
}
}
94.二叉树的中序遍历
1.解法一:递归
class Solution {
public List<Integer> inorderTraversal(TreeNode root) {
List<Integer> res = new ArrayList<>();
helper(root, res);
return res;
}
private void helper(TreeNode root, List res) {
if (root != null) {
if (root.left != null) helper(root.left, res);
res.add(root.val);
if (root.right != null) helper(root.right, res);
}
}
}
2.解法二:迭代法——使用栈
class Solution {
public List<Integer> inorderTraversal(TreeNode root) {
// 中序遍历使用栈来实现
List<Integer> res = new ArrayList<>();
Stack<TreeNode> stack = new Stack<>();
TreeNode curr = root;
while (curr != null || !stack.isEmpty()) {
// 只要左边不为空,就往栈中压入当前节点
// 先把左边全部压入栈中
while (curr != null) {
stack.push(curr);
curr.left;
}
// 左孩子为空了,就开始弹出栈顶元素
curr = stack.pop();
// 将弹出的元素添加至链表末尾
res.add(curr.val);
// 右边遍历完了,开始遍历左边
curr = curr.right;
}
return res;
}
}
144.二叉树的前序遍历
1.解法一:递归
class Solution {
public List<Integer> preorderTraversal(TreeNode root) {
List<Integer> res = new ArrayList<>();
helper(root, res);
return res;
}
private void helper(TreeNode root, List res) {
if (root != null) {
res.add(root.val);
if (root.left != null) helper(root.left, res);
if (root.right != null) helper(root.right, res);
}
}
}
2.解法二:迭代法——使用栈
class Solution {
public List<Integer> preorderTraversal(TreeNode root) {
if (root == null) return new ArrayList<>();
// 前序遍历使用队列完成
LinkedList<Integer> res = new LinkedList<>();
LinkedList<TreeNode> stack = new LinkedList<>();
stack.add(root);
while (!stack.isEmpty()) {
TreeNode node = stack.pollLast();
res.add(node.val);
// 先压右边,再压左边
if (node.right != null) stack.add(node.right);
if (node.left != null) stack.add(node.left);
}
return res;
}
}
590.N 叉树的后续遍历
1.解法一:递归
class Solution {
public List<Integer> postorder(Node root) {
List<Integer> res = new ArrayList<>();
helper(root, res);
return res;
}
private void helper(Node root, List res) {
// 要是根节点为空,则啥也不干
if (root == null) return;
for (Node node : root.children) {
// 对于每一个节点都执行一样的操作
helper(node, res);
}
res.add(root.val);
}
}
2.解法二:迭代:灵活使用 LinkedList 的各种头插尾插的方法
class Solution {
public List<Integer> postorder(Node root) {
LinkedList<Integer> res = new LinkedList<>();
LinkedList<Node> stack = new LinkedList<>();
if (root == null) return res;
stack.add(root);
while (!stack.isEmpty()) {
Node node = stack.pollLast();
res.addFirst(node.val);
for (Node no : node.children) {
if (no != null) stack.add(no);
}
}
return res;
}
}
589.N叉树的前序遍历
1.解法一:递归——和后序遍历一个样
class Solution {
public List<Integer> preorder(Node root) {
List<Integer> res = new ArrayList<>();
helper(root, res);
return res;
}
private void helper(Node root, List res) {
// 递归终止条件,啥也不干
if (root == null) return;
res.add(root.val);
for (Node node : root.children) {
helper(node, res);
}
}
}
2.解法二:迭代
class Solution {
public List<Integer> preorder(Node root) {
LinkedList<Integer> res = new LinkedList<>();
LinkedList<Node> stack = new LinkedList<>();
if (root == null) return res;
stack.add(root);
while (!stack.isEmpty()) {
Node node = stack.pollLast();
res.add(node.val);
// 主要的时间消耗
Collections.reverse(node.children);
for (Node no : node.children) {
stack.add(no);
}
}
return res;
}
}
429.N 叉树的层序遍历
1.解法一:迭代
class Solution {
public List<List<Integer>> levelOrder(Node root) {
// 使用队列来解决
List<List<Integer>> res = new LinkedList<>();
Queue<Node> queue = new LinkedList<>();
if (root == null) return res;
queue.add(root);
while (!queue.isEmpty()) {
List<Integer> level = new LinkedList<>();
int size = queue.size();
// 把每一层的节点添加完成,并且在后面添加上孩子节点的
for (int i = 0;i < size;i ++) {
Node node = queue.remove();
level.add(node.val);
queue.addAll(node.children);
}
res.add(level);
}
return res;
}
}