https://github.com/jovins/algorithm
Record daily training algorithms and data structures by Swift
https://github.com/jovins/algorithm
algorithm leetcode structure swift
Last synced: 12 days ago
JSON representation
Record daily training algorithms and data structures by Swift
- Host: GitHub
- URL: https://github.com/jovins/algorithm
- Owner: Jovins
- License: mit
- Created: 2019-05-21T12:45:53.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-08T07:59:42.000Z (almost 6 years ago)
- Last Synced: 2025-04-01T05:02:16.992Z (about 2 months ago)
- Topics: algorithm, leetcode, structure, swift
- Language: Swift
- Homepage:
- Size: 240 KB
- Stars: 12
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Algorithm By Swift

Record daily training algorithms and data structures by Swift. If you like them, then give me a star❤️, thanks!
## Data Structures
+ [数组 Array]()
+ [字典 Dictionary]()
+ [集合 Collection]()
+ [字符串 String]()
+ [链表 Link]()
+ [栈 Stack]()
+ [队列 Queue]()
+ [二叉树 Tree]()
+ [排序 Sort]()
+ [搜索 Search]()
+ [动态规划 Dynamic]()
+ [贪心算法 Greedy]()## Algorithm
+ [两数之和 Two Sum]()
+ [两数相加 Add Two Number]()
+ [无重复字符的最长子串 LengthOfLongestSubstring]()
+ [寻找两个有序数组的中位数 FindMedianSortedArrays]()
+ [Z 字形变换 ZigCovert]()
+ [整数反转 ReverseInteger]()
+ [回文数 ValidPalindrome]()
+ [三数之和 ThreeSum]()
+ [删除链表的倒数第N个节点 RemoveNthFromEnd]()
+ [有效括号 Valid Parenthese]()
+ [合并两个有序链表 Merge Two Lists]()
+ [两两交换链表中的节点 Swap Pairs]()
+ [删除有序数组中的重复项 Remove Duplicates]()
+ [缺失数字 Miss Number]()
+ [分糖果 Distribute Candies]()
+ [移除元素 RemoveElement]()
+ [盛最多水的容器 MaxArea]()
+ [最长公共前缀 LongestCommonPrefix]()
+ [接雨水 TrapRainWater]()
+ [搜索插入位置 SearchInsertPosition]()
+ [最后一个单词的长度 LengthOfLastWord]()
+ [报数 CountToSay]()