Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the 10 most commonly used algorithms for code interview

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

本篇文章给大家分享的是有关代码面试最常用的10大算法有哪些,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

面试也是一门学问,在面试之前做好充分的准备则是成功的必须条件,而程序员在代码面试时,常会遇到编写算法的相关问题,比如排序、二叉树遍历等等。

在程序员的职业生涯中,算法亦算是一门基础课程,尤其是在面试的时候,很多公司都会让程序员编写一些算法实例,例如快速排序、二叉树查找等等。

这里总结了程序员在代码面试中最常遇到的10大算法类型,想要真正了解这些算法的原理,还需程序员们花些功夫。

1.String/Array/Matrix

在Java中,String是一个包含char数组和其它字段、方法的类。如果没有IDE自动完成代码,下面这个方法大家应该记住:

toCharArray() //get char array of a StringArrays.sort() //sort an arrayArrays.toString(char[] a) //convert to stringcharAt(int x) //get a char at the specific indexlength() //string lengthlength //array size substring(int beginIndex) substring(int beginIndex, int endIndex)Integer.valueOf()//string to integerString.valueOf()/integer to string

String/arrays很容易理解,但与它们有关的问题常常需要高级的算法去解决,例如动态编程、递归等。

下面列出一些需要高级算法才能解决的经典问题:

Evaluate Reverse Polish Notation

Longest Palindromic

Substring

单词分割

字梯

Median of Two Sorted Arrays

正则表达式匹配

合并间隔

插入间隔

Two Sum

3Sum

4Sum

3Sum Closest

String to Integer

合并排序数组

Valid Parentheses

实现strStr()

Set Matrix Zeroes

搜索插入位置

Longest Consecutive Sequence

Valid Palindrome

螺旋矩阵

搜索一个二维矩阵

旋转图像

三角形

Distinct Subsequences Total

Maximum Subarray

删除重复的排序数组

删除重复的排序数组2

查找没有重复的最长子串

包含两个独特字符的最长子串

Palindrome Partitioning

2.链表

在Java中实现链表是非常简单的,每个节点都有一个值,然后把它链接到下一个节点。

class Node { int val; Node next; Node(int x) { val = x; next = null; }}

比较流行的两个链表例子就是栈和队列。

栈(Stack)

class Stack{ Node top; public Node peek(){ if(top != null){ return top; } return null; } public Node pop(){ if(top == null){ return null; }else{ Node temp = new Node(top.val); top = top.next; return temp; } } public void push(Node n){ if(n != null){ n.next = top; top = n; } }}

队列(Queue)

class Queue{ Node first, last; public void enqueue(Node n){ if(first == null){ first = n; last = first; }else{ last.next = n; last = n; } } public Node dequeue(){ if(first == null){ return null; }else{ Node temp = new Node(first.val); first = first.next; return temp; } }}

值得一提的是,Java标准库中已经包含一个叫做Stack的类,链表也可以作为一个队列使用(add()和remove())。(链表实现队列接口)如果你在面试过程中,需要用到栈或队列解决问题时,你可以直接使用它们。

在实际中,需要用到链表的算法有:

插入两个数字

重新排序列表

链表周期

Copy List with Random Pointer

合并两个有序列表

合并多个排序列表

从排序列表中删除重复的

分区列表

LRU缓存

3.树&堆

这里的树通常是指二叉树。

class TreeNode{ int value; TreeNode left; TreeNode right;}

下面是一些与二叉树有关的概念:

二叉树搜索:对于所有节点,顺序是:left children

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report