此主題將有三位參賽者共同參與,我們將合力完成三方共 90篇的鐵人文章(Java刷題A/B和C++刷題)。根據LeetCode Top 100 Liked題目集的脈絡,我們將介紹共十四種演算法,並透過Java和C++實作LeetCode上的題目。
矩陣(Matrix) 與基本的陣列結構息息相關,有點類似於二維陣列,它是一個利用mxn的陣列來介紹矩陣擁有m列和n行。而一般資料結構與演算法上常用到的矩陣有四種...
原文題目 You are given an n x n 2D matrix representing an image, rotate the image by...
原文題目 Given an m x n integer matrix matrix, if an element is 0, set its entire ro...
原文題目 Write an efficient algorithm that searches for a value target in an m x n i...
字典樹(Trie) 是一種專門用來處理字串(單字)的樹狀結構,特別適合解決字串(單字)集合中的「前綴匹配」問題。它的每個節點代表一個字母,並且從根節點到某個葉節...
原文題目 A trie (pronounced as "try") or prefix tree is a tree data struct...
原文題目 Given an array nums of size n, return the majority element. The majority el...
原文題目 Given an integer array nums, return an array answer such that answer[i] is...
原文題目 Given an integer array nums, find the subarray with the largest sum, and re...
首先,必須先給成功完成連續30天發鐵人賽文章的自己來一點很大的掌聲嗚嗚嗚嗚!!!OK,我們來回顧一下這30天都寫了些什麼、做了些什麼努力吧! 在這30天中,我們...