All Projects → Allenskoo856 → AlgorithmsSolutions

Allenskoo856 / AlgorithmsSolutions

Licence: other
☑️java 算法设计与实现--《剑指offer》《编程之美》等Java实现

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to AlgorithmsSolutions

algorithms
basic algorithms and solutions
Stars: ✭ 22 (+46.67%)
Mutual labels:  solutions
opendatanetwork.com
The Open Data Network
Stars: ✭ 18 (+20%)
Mutual labels:  solutions
Understanding-Analysis-Abbott-Solutions
Unofficial solutions to Understanding Analysis by Stephen Abbott (1st Edition)
Stars: ✭ 85 (+466.67%)
Mutual labels:  solutions
Clrs
📚 Solutions to Introduction to Algorithms Third Edition
Stars: ✭ 3,230 (+21433.33%)
Mutual labels:  solutions
crowdsource-reporter
An ArcGIS Online group application template authored by organization and made available to constituents to report a problem or observation.
Stars: ✭ 25 (+66.67%)
Mutual labels:  solutions
Competitive-Programming-Solutions-Library
Solutions for various contest CCC, CCO, IOI .etc.
Stars: ✭ 24 (+60%)
Mutual labels:  solutions
data-assistant
ArcGIS Pro Add-in that assists in emergency management, local government and state government data aggregation workflows.
Stars: ✭ 16 (+6.67%)
Mutual labels:  solutions
CS-97SI
Solutions to "CS 97SI: Introduction to Competitive Programming Contests" by Stanford University
Stars: ✭ 24 (+60%)
Mutual labels:  solutions
7-billion-humans-solutions
Solutions for the game 7 Billion Humans
Stars: ✭ 147 (+880%)
Mutual labels:  solutions
Google-IT-Automation-with-Python-Professional-Certificate
Crash course on python [Course 1 of 6 in the Google IT Automation with Python Specialization
Stars: ✭ 34 (+126.67%)
Mutual labels:  solutions
Professional Services
Common solutions and tools developed by Google Cloud's Professional Services team
Stars: ✭ 1,923 (+12720%)
Mutual labels:  solutions
Dynamics365BulkSolutionExporter
[Work In Progress] Take backup of whole D365 organization or export multiple solutions.
Stars: ✭ 30 (+100%)
Mutual labels:  solutions
How-to-Solve-it-by-Computer-R-G-Dromey
How to Solve it by Computer - R.G. Dromey Solutions
Stars: ✭ 20 (+33.33%)
Mutual labels:  solutions
landscape-of-programming
This repo aim to show you what to learn on the way to excellence.
Stars: ✭ 67 (+346.67%)
Mutual labels:  solutions
Coursera HTML-CSS-Javascript-for-Web-Developers
Solutions to the assignments of the Coursera course "HTML, CSS, and Javascript for Web Developers" by Johns Hopkins University.
Stars: ✭ 103 (+586.67%)
Mutual labels:  solutions
HackerRank-LinuxShell
HackerRank-LinuxShell Solutions 💻
Stars: ✭ 26 (+73.33%)
Mutual labels:  solutions
Awesome-JS
Algorithms in Javscript, including Q Learning in js.
Stars: ✭ 23 (+53.33%)
Mutual labels:  solutions
the-c-programming-language-2nd-edition-solutions
Solutions to the exercises in the book "The C Programming Language" (2nd edition) by Brian W. Kernighan and Dennis M. Ritchie. This book is also referred to as K&R.
Stars: ✭ 245 (+1533.33%)
Mutual labels:  solutions
Leetcode-Solution-All
1000篇通俗易懂且高质量的 LeetCode 解析,动画题解,套路分析,模板分享
Stars: ✭ 73 (+386.67%)
Mutual labels:  solutions
dd-algorithm-examples
Code Snippets of DataStructure & Algorithm & LeetCode Implementations/Solutions for Several Programming Language: Java, JavaScript, Go, Python, Rust, etc. 💫 多语言版本的数据结构与算法实现分析
Stars: ✭ 33 (+120%)
Mutual labels:  alogrithms

Java 算法设计与实现

本仓库使用 Java 实现常见的算法和解决常见的算法面试题目

排序算法

排序算法 平均时间复杂度 空间复杂度 排序方式 稳定性 代码实现 说明
冒泡排序 O(N^2) O(1) In-place 稳定 Java ——
选择排序 O(N^2) O(1) In-place 不稳定 Java ------
插入排序 O(N^2) O(1) In-place 稳定 Java
希尔排序 O(nLogN) O(1) In-Place 不稳定 Java
归并排序 O(nLogN) O(N) out-Place 稳定 Java
自顶向上的归并排序 O(nLogN) O(N) out-Place 稳定 java 自顶先上
快速排序 O(nLogN) O(logN) In-Place 不稳定 java
快速排序2版 o(nLogN) O(logN) In-Place 不稳定 Java 二路快排
三路快速排序 o(nLogN) O(logN) In-Place 不稳定 java 上路快排
最大索引堆 Null NUll NUll NUll java 最大索引
堆排序 o(nLogN) O(1) In-Place 不稳定 Java
堆排序2 o(nLogN) O(1) In-Place 不稳定 java
堆排序3 o(nLogN) O(1) In-Place 不稳定 java
基数排序 O(n * K) O(N + K) Out—place 稳定 java

二叉树

二叉树 平均时间复杂度 空间复杂度 代码实现
顺序查找表 Null Null java
基于Hash的散列表 Null NUll Java
链式查找链表 Null Null Java
二分搜索树 Null NUll java
平衡二叉树---红黑树 NUll Null Java
二分查找算法 (递归) java
二分查找算法(非递归) Java

平均时间复杂度 空间复杂度 代码实现
DenseGraph Java
DenseWeightedGraph java
SparseGraph java
SparseWeightedGraph java

剑指offer

题号 题目 英文 牛客网在线编程 答案解答
02 【 实现Singleton 模式——七种实现方式】 Singleton
03 【二维数组中的查找】 FindInPartiallySortedMatrix FindInPartiallySortedMatrix Java
04 【替换空格】 ReplaceBlank ReplaceBlank java
05 【从尾到头打印链表】 PrintListFromTailToHead PrintListFromTailToHead java
06 【重建二叉树】 ReConstructBinaryTree ReConstructBinaryTree java
07 【用两个栈实现队列】 TwoStackQueue TwoStackQueue java
08 【旋转数组的最小的数字】 MinNumberInRotateArray MinNumberInRotateArray java
09 【斐波那契数列】 Fibonacci Fibonacci java
10 【跳台阶】 JumpSteps JumpSteps java
11 【变态跳台阶】 JumpStepsII JumpStepsII java
12 【矩形覆盖】 RectCover RectCover java
13 【二进制中1的个数】 NumberOf1 NumberOf1 java
14 【数值的整数次方】 Power Power java
15 【调整数组顺序使奇数位于偶数前面】 ReOrderArray ReOrderArray java
16 【链表中倒数第K个节点】 FindKthToTail FindKthToTail java
17 【反转链表】 ReverseList ReverseList java
18 【合并两个排序的链表】 ListNodeMerge ListNodeMerge java
19 【树的子结构】 HasSubtree HasSubtree java
20 【二叉树的镜像】 MirrorBinaryTree MirrorBinaryTree java
21 【顺时针打印矩阵】 PrintMatrix PrintMatrix
22 【包含min函数的栈】 GetMinStack GetMinStack java
23 【栈的压入弹出顺序】 IsPopOrder IsPopOrder java
24 【从上往下打印二叉树】
25 【二叉搜索树的后序遍历序列】
26 【二叉树中和为某一值的路径】
27 【复杂链表的复制】 RandomListNode RandomListNode java
28 【二叉搜索树与双向链表】
29 【字符串的排序】 TReeCodeSort TReeCodeSort
30 【数组中出现次数超过一半的数字】
31 【最小的K个数】
32 【连续子数组的最大和】
33 【整数中1出现的次数】
34 【把数组排成最小的数】
35 【丑数】
36 【第一个只出现一次的字符位置】
37 【数组的逆序对】
38 【两个链表中的第一个公共节点】 FindFirstCommonNodeInList FindFirstCommonNodeInList java
39 【数字在排序数组中出现的次数】
40 【二叉树的深度】
41 【平衡二叉树】
42 【数组中只出现一次的数字】
43 【和为S的连续正数序列】
44 【和为S的两个数字】
45 【左旋转字符串】
46 【翻转单词顺序列】
47 【扑克牌顺子】
48 【孩子们的游戏】
49 【求1+2+3+...+n】
50 【不用加减乘除做加法】
51 【把字符串转换成整数】
52 【数组中重复的数字】
53 【构建乘积数组】
54 【正则表达式匹配】
55 【表示数值的字符串】
56 【字符流中第一个不重复的字符】
57 【链表中环的入口结点】 EntryNodeOfLoop EntryNodeOfLoop java
58 【删除链表中重复的节点】 DeleteDuplicationListNode DeleteDuplicationListNode java
59 【二叉树的下一个节点】
60 【对称的二叉树】
61 【按之字形顺序打印二叉树】
62 【把二叉树打印成多行】
63 【序列化二叉树】
64 【二叉搜索树的第K个节点】
65 【数据流中的中位数】
66 【滑动窗口的最大值】
67 【矩阵中的路径】

References

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].