An open API service indexing awesome lists of open source software.

https://github.com/bobomee/algorithms-java

Algorithms demos
https://github.com/bobomee/algorithms-java

Last synced: 8 months ago
JSON representation

Algorithms demos

Awesome Lists containing this project

README

          

查找与排序
---

[查找](https://github.com/BoBoMEe/algorithms-java/blob/master/note/Find.md)

[排序](https://github.com/BoBoMEe/algorithms-java/blob/master/note/Sort.md)

## 算法题:
---

1. 有如下规则:

输入 "aaa", 输出 "3a",
输入 "aab", 输出 "2ab"
输入 "abb", 输出 "a2b"
输入 "aba", 输出 "aba"

实现代码:
[Problem1](https://github.com/BoBoMEe/algorithms-java/blob/master/app/src/main/java/com/java/bobomee/algorithms_module/other/Problem1.java)

2. 手动实现 indexOf

实现代码:
[Problem2](https://github.com/BoBoMEe/algorithms-java/blob/master/app/src/main/java/com/java/bobomee/algorithms_module/other/Problem2.java)