├── Array ├── Array.Console.sln ├── Array.Console.suo ├── Array.Lib │ ├── Array.Lib.csproj │ ├── ArrayPartitionISln.cs │ ├── BestTimeToBuyandSellStockII.cs │ ├── BestTimetoBuyandSellStock.cs │ ├── ContainsDuplicateIISln.cs │ ├── ContainsItemSln.cs │ ├── DisappearElementsSln.cs │ ├── FindPairsSln.cs │ ├── MaxConsecutiveOnesSln.cs │ ├── PascalsTriangle.cs │ ├── PascalsTriangleII.cs │ ├── PlusOneSln.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RemoveDuplicatesfromSortedArray.cs │ ├── RemoveElementSln.cs │ ├── ReshapeMatrixSln.cs │ ├── RotateArraySln.cs │ ├── SearchInsertPosition.cs │ └── ThirdMaximumNumber.cs └── Array │ ├── App.config │ ├── Array.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── BinarySearch ├── BinarySearch.Lib │ ├── ArrangeCoinsSln.cs │ ├── BinarySearch.Lib.csproj │ ├── FirstBadVersionSln.cs │ ├── IntersectionOfTwoArraysISln.cs │ ├── IntersectionOfTwoArraysSln.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TwoSumIISln.cs │ └── ValidPerfectSquareSln.cs └── BinarySearchSln │ ├── App.config │ ├── BinarySearchSln.csproj │ ├── BinarySearchSln.sln │ ├── BinarySearchSln.v12.suo │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── BitManipulation ├── BitManipulation.sln ├── BitManipulation.suo └── BitManipulation │ ├── BitManipulation.csproj │ ├── BitManipulation.csproj.user │ ├── HammingDistanceSln.cs │ ├── IntegerReplacement.cs │ ├── NumberComplementSln.cs │ ├── PowOfFourSln.cs │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── DP ├── ContinuousSubarraySln.cs ├── DP.Lib.csproj ├── HouseRoberSln.cs ├── MajorityNumberSln.cs ├── MaximumSubarraySln.cs ├── Properties │ └── AssemblyInfo.cs └── RangeSumQuerySln.cs ├── Details.md ├── DetailsMd ├── Details.md ├── DetailsArray.md ├── DetailsBinarySearch.md ├── DetailsBitManipulation.md ├── DetailsDynamicProgramming.md ├── DetailsHashTable.md ├── DetailsLinkedList.md ├── DetailsMath.md ├── DetailsSort.md ├── DetailsStack.md ├── DetailsString.md ├── DetailsTree.md └── DetailsTwoPointers.md ├── HashTable ├── HashTable.Lib │ ├── Boomerangs.cs │ ├── DistributeCandiessln.cs │ ├── FindAllAnagramsSln.cs │ ├── FindDifferenceSln.cs │ ├── FrequSortSln.cs │ ├── HashTable.Lib.csproj │ ├── IslandPerimeter.cs │ ├── IsomorphicStringsSln.cs │ ├── KeyBoard.jpg │ ├── KeyBoradRowSln.cs │ ├── LongestPalindrome.cs │ ├── PrimesCountSln.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Randomized.jpg │ ├── RandomizedCollection.cs │ ├── RandomizedSet.cs │ ├── SingleOneSln.cs │ ├── TwoSumSln.cs │ ├── ValidAnagramSln.cs │ └── WordPattenSln.cs ├── HashTable.sln ├── HashTable.suo └── HashTable │ ├── HashTable.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── Images └── floyd circle.jpg ├── LICENSE ├── LeetCodeTool ├── Application Files │ └── LeetcodeManager_1_1_2_20 │ │ ├── 1.ico.deploy │ │ ├── Assembly │ │ ├── Infragistics2.Shared.v12.1.dll.deploy │ │ ├── Infragistics2.Win.UltraWinEditors.v12.1.dll.deploy │ │ ├── Infragistics2.Win.UltraWinGrid.v12.1.dll.deploy │ │ └── Infragistics2.Win.v12.1.dll.deploy │ │ ├── DataMd │ │ ├── BinarySearch.txt.deploy │ │ ├── DynamicProgramming.txt.deploy │ │ ├── HashTable.txt.deploy │ │ ├── LinkedList.txt.deploy │ │ ├── Math.txt.deploy │ │ ├── Stack.txt.deploy │ │ ├── String.txt.deploy │ │ ├── Tree.txt.deploy │ │ ├── TwoPointers.txt.deploy │ │ └── array.txt.deploy │ │ ├── EntityFramework.SqlServer.dll.deploy │ │ ├── EntityFramework.dll.deploy │ │ ├── Infragistics2.Shared.v12.1.dll.deploy │ │ ├── Infragistics2.Win.UltraWinEditors.v12.1.dll.deploy │ │ ├── Infragistics2.Win.UltraWinGrid.v12.1.dll.deploy │ │ ├── Infragistics2.Win.v12.1.dll.deploy │ │ ├── LeetcodeManager.application │ │ ├── LeetcodeManager.exe.config.deploy │ │ ├── LeetcodeManager.exe.deploy │ │ ├── LeetcodeManager.exe.manifest │ │ └── Resources │ │ ├── 1.bmp.deploy │ │ ├── 1.ico.deploy │ │ ├── 10.png.deploy │ │ ├── 11.png.deploy │ │ ├── 2.bmp.deploy │ │ ├── 3.bmp.deploy │ │ ├── 4.bmp.deploy │ │ ├── 5.bmp.deploy │ │ ├── 6.bmp.deploy │ │ ├── 7.bmp.deploy │ │ ├── 8.bmp.deploy │ │ ├── delAll.bmp.deploy │ │ └── edit.bmp.deploy ├── LeetCodeTool-V1.1.zip ├── LeetcodeManager.application ├── LeetcodeManager_TemporaryKey.pfx └── setup.exe ├── LinkedList ├── LinkedList.Lib │ ├── CycleSln.cs │ ├── LinkedList.Lib.csproj │ ├── LinkesListBasic.cs │ ├── ListNode.cs │ ├── PalindromeLinkedList.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LinkedList.sln ├── LinkedList.suo └── LinkedList │ ├── LinkedList.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── Math ├── .vs │ └── Math │ │ └── v15 │ │ └── .suo ├── Math.Lib │ ├── AddBinarySln.cs │ ├── AddDigitsSln.cs │ ├── AddStringsSln.cs │ ├── ExcelColumnNumberSln.cs │ ├── ExcelColumnTitle.cs │ ├── ExlColumnTitleSln.cs │ ├── Floyd'sTortoiseandHare.jpg │ ├── HappyNumber.cs │ ├── IssPalindromeSln.cs │ ├── Math.Lib.csproj │ ├── Math.Lib.csproj.user │ ├── MinimumMovesSln.cs │ ├── MissingNumberSln.cs │ ├── Nthdigit.cs │ ├── PalindromeNumberSln.cs │ ├── PerfectNumberSln.cs │ ├── PowerOfThreeSln.cs │ ├── PowerOfTwoSln.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReverseIntegarSln.cs │ ├── RomanToInteger.cs │ ├── Sqrtx.cs │ ├── UglyNumberSln.cs │ └── VedicSquare.png ├── Math.sln ├── Math.suo ├── Math.v12.suo └── Math │ ├── Math.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── README.md ├── READMEOld.md ├── Sort └── WiggleSortSln.cs ├── Stack ├── Stack.Lib │ ├── MinStackSln.cs │ ├── NextGreaterSln.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueueUsingStackSln.cs │ ├── Stack.Lib.csproj │ ├── StackUsingQueueSln.cs │ └── ValidParenthesesSln.cs └── Stack │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Stack.csproj │ ├── Stack.sln │ └── Stack.v12.suo ├── String ├── StringSln.Lib │ ├── DetectCapitalSln.cs │ ├── LengthOfLastWordSln.cs │ ├── LongestCommonPrefixSln.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RansomNoteSln.cs │ ├── RepeatedSubstringSln.cs │ ├── SegmentNumberSln.cs │ └── StringSln.Lib.csproj └── StringSln │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── StringSln.csproj │ ├── StringSln.sln │ └── StringSln.v12.suo ├── TodayUpdate.md ├── Tree ├── Tree.TreeLib │ ├── BanlancedTree.cs │ ├── BinaryTreePath.cs │ ├── BuildTreeByPreAndInorder.cs │ ├── CommonAncester.cs │ ├── DiameterTree.cs │ ├── FindModes.cs │ ├── InorderStack.cs │ ├── InvertTree.cs │ ├── IsSameTreeSln.cs │ ├── LeftLeafSum.cs │ ├── LevelOrderTraversal.cs │ ├── LevelTraversalTree.cs │ ├── MaxMinDepth.cs │ ├── OnePathSum.cs │ ├── PreOrderStack.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SameTree.cs │ ├── SortArrayToBalanced.cs │ ├── SymmetricTree .cs │ ├── TraversalTreeUsingStack.cs │ ├── TravesalUsingStack.cs │ ├── Tree.TreeLib.csproj │ ├── TreeNode.cs │ ├── TreePathSum.cs │ ├── TreePaths.cs │ ├── TreeTools.cs │ ├── UniqueBSTSln.cs │ ├── ZigzagLevelOrder.cs │ ├── binarytrees.jpg │ ├── leetcode-tree.xml │ ├── stairs.jpg │ └── triangles.jpg ├── Tree.sln ├── Tree.suo └── Tree │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Tree.csproj │ ├── Tree.csproj.user │ ├── Tree.sln │ ├── Tree.v12.suo │ └── test │ └── testTree.cs ├── TwoPointers ├── MergeSortedArraySln.cs ├── MoveZeroesSln.cs ├── ReverseVowelsSln.cs ├── TwoPointers.Lib.csproj └── ValidPalindromeSln.cs ├── UpdateHistory.md ├── tool.png └── tool2.png /Array/Array.Console.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Console.sln -------------------------------------------------------------------------------- /Array/Array.Console.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Console.suo -------------------------------------------------------------------------------- /Array/Array.Lib/Array.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/Array.Lib.csproj -------------------------------------------------------------------------------- /Array/Array.Lib/ArrayPartitionISln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/ArrayPartitionISln.cs -------------------------------------------------------------------------------- /Array/Array.Lib/BestTimeToBuyandSellStockII.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/BestTimeToBuyandSellStockII.cs -------------------------------------------------------------------------------- /Array/Array.Lib/BestTimetoBuyandSellStock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/BestTimetoBuyandSellStock.cs -------------------------------------------------------------------------------- /Array/Array.Lib/ContainsDuplicateIISln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/ContainsDuplicateIISln.cs -------------------------------------------------------------------------------- /Array/Array.Lib/ContainsItemSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/ContainsItemSln.cs -------------------------------------------------------------------------------- /Array/Array.Lib/DisappearElementsSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/DisappearElementsSln.cs -------------------------------------------------------------------------------- /Array/Array.Lib/FindPairsSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/FindPairsSln.cs -------------------------------------------------------------------------------- /Array/Array.Lib/MaxConsecutiveOnesSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/MaxConsecutiveOnesSln.cs -------------------------------------------------------------------------------- /Array/Array.Lib/PascalsTriangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/PascalsTriangle.cs -------------------------------------------------------------------------------- /Array/Array.Lib/PascalsTriangleII.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/PascalsTriangleII.cs -------------------------------------------------------------------------------- /Array/Array.Lib/PlusOneSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/PlusOneSln.cs -------------------------------------------------------------------------------- /Array/Array.Lib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Array/Array.Lib/RemoveDuplicatesfromSortedArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/RemoveDuplicatesfromSortedArray.cs -------------------------------------------------------------------------------- /Array/Array.Lib/RemoveElementSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/RemoveElementSln.cs -------------------------------------------------------------------------------- /Array/Array.Lib/ReshapeMatrixSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/ReshapeMatrixSln.cs -------------------------------------------------------------------------------- /Array/Array.Lib/RotateArraySln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/RotateArraySln.cs -------------------------------------------------------------------------------- /Array/Array.Lib/SearchInsertPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/SearchInsertPosition.cs -------------------------------------------------------------------------------- /Array/Array.Lib/ThirdMaximumNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array.Lib/ThirdMaximumNumber.cs -------------------------------------------------------------------------------- /Array/Array/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array/App.config -------------------------------------------------------------------------------- /Array/Array/Array.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array/Array.csproj -------------------------------------------------------------------------------- /Array/Array/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array/Program.cs -------------------------------------------------------------------------------- /Array/Array/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Array/Array/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BinarySearch/BinarySearch.Lib/ArrangeCoinsSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearch.Lib/ArrangeCoinsSln.cs -------------------------------------------------------------------------------- /BinarySearch/BinarySearch.Lib/BinarySearch.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearch.Lib/BinarySearch.Lib.csproj -------------------------------------------------------------------------------- /BinarySearch/BinarySearch.Lib/FirstBadVersionSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearch.Lib/FirstBadVersionSln.cs -------------------------------------------------------------------------------- /BinarySearch/BinarySearch.Lib/IntersectionOfTwoArraysISln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearch.Lib/IntersectionOfTwoArraysISln.cs -------------------------------------------------------------------------------- /BinarySearch/BinarySearch.Lib/IntersectionOfTwoArraysSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearch.Lib/IntersectionOfTwoArraysSln.cs -------------------------------------------------------------------------------- /BinarySearch/BinarySearch.Lib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearch.Lib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BinarySearch/BinarySearch.Lib/TwoSumIISln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearch.Lib/TwoSumIISln.cs -------------------------------------------------------------------------------- /BinarySearch/BinarySearch.Lib/ValidPerfectSquareSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearch.Lib/ValidPerfectSquareSln.cs -------------------------------------------------------------------------------- /BinarySearch/BinarySearchSln/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearchSln/App.config -------------------------------------------------------------------------------- /BinarySearch/BinarySearchSln/BinarySearchSln.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearchSln/BinarySearchSln.csproj -------------------------------------------------------------------------------- /BinarySearch/BinarySearchSln/BinarySearchSln.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearchSln/BinarySearchSln.sln -------------------------------------------------------------------------------- /BinarySearch/BinarySearchSln/BinarySearchSln.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearchSln/BinarySearchSln.v12.suo -------------------------------------------------------------------------------- /BinarySearch/BinarySearchSln/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearchSln/Program.cs -------------------------------------------------------------------------------- /BinarySearch/BinarySearchSln/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BinarySearch/BinarySearchSln/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BitManipulation/BitManipulation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BitManipulation/BitManipulation.sln -------------------------------------------------------------------------------- /BitManipulation/BitManipulation.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BitManipulation/BitManipulation.suo -------------------------------------------------------------------------------- /BitManipulation/BitManipulation/BitManipulation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BitManipulation/BitManipulation/BitManipulation.csproj -------------------------------------------------------------------------------- /BitManipulation/BitManipulation/BitManipulation.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BitManipulation/BitManipulation/BitManipulation.csproj.user -------------------------------------------------------------------------------- /BitManipulation/BitManipulation/HammingDistanceSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BitManipulation/BitManipulation/HammingDistanceSln.cs -------------------------------------------------------------------------------- /BitManipulation/BitManipulation/IntegerReplacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BitManipulation/BitManipulation/IntegerReplacement.cs -------------------------------------------------------------------------------- /BitManipulation/BitManipulation/NumberComplementSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BitManipulation/BitManipulation/NumberComplementSln.cs -------------------------------------------------------------------------------- /BitManipulation/BitManipulation/PowOfFourSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BitManipulation/BitManipulation/PowOfFourSln.cs -------------------------------------------------------------------------------- /BitManipulation/BitManipulation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BitManipulation/BitManipulation/Program.cs -------------------------------------------------------------------------------- /BitManipulation/BitManipulation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/BitManipulation/BitManipulation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DP/ContinuousSubarraySln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DP/ContinuousSubarraySln.cs -------------------------------------------------------------------------------- /DP/DP.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DP/DP.Lib.csproj -------------------------------------------------------------------------------- /DP/HouseRoberSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DP/HouseRoberSln.cs -------------------------------------------------------------------------------- /DP/MajorityNumberSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DP/MajorityNumberSln.cs -------------------------------------------------------------------------------- /DP/MaximumSubarraySln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DP/MaximumSubarraySln.cs -------------------------------------------------------------------------------- /DP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DP/RangeSumQuerySln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DP/RangeSumQuerySln.cs -------------------------------------------------------------------------------- /Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Details.md -------------------------------------------------------------------------------- /DetailsMd/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DetailsMd/Details.md -------------------------------------------------------------------------------- /DetailsMd/DetailsArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DetailsMd/DetailsArray.md -------------------------------------------------------------------------------- /DetailsMd/DetailsBinarySearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DetailsMd/DetailsBinarySearch.md -------------------------------------------------------------------------------- /DetailsMd/DetailsBitManipulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DetailsMd/DetailsBitManipulation.md -------------------------------------------------------------------------------- /DetailsMd/DetailsDynamicProgramming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DetailsMd/DetailsDynamicProgramming.md -------------------------------------------------------------------------------- /DetailsMd/DetailsHashTable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DetailsMd/DetailsHashTable.md -------------------------------------------------------------------------------- /DetailsMd/DetailsLinkedList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DetailsMd/DetailsLinkedList.md -------------------------------------------------------------------------------- /DetailsMd/DetailsMath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DetailsMd/DetailsMath.md -------------------------------------------------------------------------------- /DetailsMd/DetailsSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DetailsMd/DetailsSort.md -------------------------------------------------------------------------------- /DetailsMd/DetailsStack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DetailsMd/DetailsStack.md -------------------------------------------------------------------------------- /DetailsMd/DetailsString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DetailsMd/DetailsString.md -------------------------------------------------------------------------------- /DetailsMd/DetailsTree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DetailsMd/DetailsTree.md -------------------------------------------------------------------------------- /DetailsMd/DetailsTwoPointers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/DetailsMd/DetailsTwoPointers.md -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/Boomerangs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/Boomerangs.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/DistributeCandiessln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/DistributeCandiessln.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/FindAllAnagramsSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/FindAllAnagramsSln.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/FindDifferenceSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/FindDifferenceSln.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/FrequSortSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/FrequSortSln.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/HashTable.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/HashTable.Lib.csproj -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/IslandPerimeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/IslandPerimeter.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/IsomorphicStringsSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/IsomorphicStringsSln.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/KeyBoard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/KeyBoard.jpg -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/KeyBoradRowSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/KeyBoradRowSln.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/LongestPalindrome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/LongestPalindrome.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/PrimesCountSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/PrimesCountSln.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/Randomized.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/Randomized.jpg -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/RandomizedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/RandomizedCollection.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/RandomizedSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/RandomizedSet.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/SingleOneSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/SingleOneSln.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/TwoSumSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/TwoSumSln.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/ValidAnagramSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/ValidAnagramSln.cs -------------------------------------------------------------------------------- /HashTable/HashTable.Lib/WordPattenSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.Lib/WordPattenSln.cs -------------------------------------------------------------------------------- /HashTable/HashTable.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.sln -------------------------------------------------------------------------------- /HashTable/HashTable.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable.suo -------------------------------------------------------------------------------- /HashTable/HashTable/HashTable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable/HashTable.csproj -------------------------------------------------------------------------------- /HashTable/HashTable/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable/Program.cs -------------------------------------------------------------------------------- /HashTable/HashTable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/HashTable/HashTable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Images/floyd circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Images/floyd circle.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LICENSE -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/1.ico.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/1.ico.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Assembly/Infragistics2.Shared.v12.1.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Assembly/Infragistics2.Shared.v12.1.dll.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Assembly/Infragistics2.Win.UltraWinEditors.v12.1.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Assembly/Infragistics2.Win.UltraWinEditors.v12.1.dll.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Assembly/Infragistics2.Win.UltraWinGrid.v12.1.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Assembly/Infragistics2.Win.UltraWinGrid.v12.1.dll.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Assembly/Infragistics2.Win.v12.1.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Assembly/Infragistics2.Win.v12.1.dll.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/BinarySearch.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/BinarySearch.txt.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/DynamicProgramming.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/DynamicProgramming.txt.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/HashTable.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/HashTable.txt.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/LinkedList.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/LinkedList.txt.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/Math.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/Math.txt.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/Stack.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/Stack.txt.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/String.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/String.txt.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/Tree.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/Tree.txt.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/TwoPointers.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/TwoPointers.txt.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/array.txt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/DataMd/array.txt.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/EntityFramework.SqlServer.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/EntityFramework.SqlServer.dll.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/EntityFramework.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/EntityFramework.dll.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Infragistics2.Shared.v12.1.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Infragistics2.Shared.v12.1.dll.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Infragistics2.Win.UltraWinEditors.v12.1.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Infragistics2.Win.UltraWinEditors.v12.1.dll.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Infragistics2.Win.UltraWinGrid.v12.1.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Infragistics2.Win.UltraWinGrid.v12.1.dll.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Infragistics2.Win.v12.1.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Infragistics2.Win.v12.1.dll.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/LeetcodeManager.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/LeetcodeManager.application -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/LeetcodeManager.exe.config.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/LeetcodeManager.exe.config.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/LeetcodeManager.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/LeetcodeManager.exe.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/LeetcodeManager.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/LeetcodeManager.exe.manifest -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/1.bmp.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/1.bmp.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/1.ico.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/1.ico.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/10.png.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/10.png.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/11.png.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/11.png.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/2.bmp.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/2.bmp.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/3.bmp.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/3.bmp.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/4.bmp.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/4.bmp.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/5.bmp.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/5.bmp.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/6.bmp.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/6.bmp.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/7.bmp.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/7.bmp.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/8.bmp.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/8.bmp.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/delAll.bmp.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/delAll.bmp.deploy -------------------------------------------------------------------------------- /LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/edit.bmp.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/Application Files/LeetcodeManager_1_1_2_20/Resources/edit.bmp.deploy -------------------------------------------------------------------------------- /LeetCodeTool/LeetCodeTool-V1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/LeetCodeTool-V1.1.zip -------------------------------------------------------------------------------- /LeetCodeTool/LeetcodeManager.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/LeetcodeManager.application -------------------------------------------------------------------------------- /LeetCodeTool/LeetcodeManager_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/LeetcodeManager_TemporaryKey.pfx -------------------------------------------------------------------------------- /LeetCodeTool/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LeetCodeTool/setup.exe -------------------------------------------------------------------------------- /LinkedList/LinkedList.Lib/CycleSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LinkedList/LinkedList.Lib/CycleSln.cs -------------------------------------------------------------------------------- /LinkedList/LinkedList.Lib/LinkedList.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LinkedList/LinkedList.Lib/LinkedList.Lib.csproj -------------------------------------------------------------------------------- /LinkedList/LinkedList.Lib/LinkesListBasic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LinkedList/LinkedList.Lib/LinkesListBasic.cs -------------------------------------------------------------------------------- /LinkedList/LinkedList.Lib/ListNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LinkedList/LinkedList.Lib/ListNode.cs -------------------------------------------------------------------------------- /LinkedList/LinkedList.Lib/PalindromeLinkedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LinkedList/LinkedList.Lib/PalindromeLinkedList.cs -------------------------------------------------------------------------------- /LinkedList/LinkedList.Lib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LinkedList/LinkedList.Lib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LinkedList/LinkedList.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LinkedList/LinkedList.sln -------------------------------------------------------------------------------- /LinkedList/LinkedList.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LinkedList/LinkedList.suo -------------------------------------------------------------------------------- /LinkedList/LinkedList/LinkedList.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LinkedList/LinkedList/LinkedList.csproj -------------------------------------------------------------------------------- /LinkedList/LinkedList/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LinkedList/LinkedList/Program.cs -------------------------------------------------------------------------------- /LinkedList/LinkedList/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/LinkedList/LinkedList/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Math/.vs/Math/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/.vs/Math/v15/.suo -------------------------------------------------------------------------------- /Math/Math.Lib/AddBinarySln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/AddBinarySln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/AddDigitsSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/AddDigitsSln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/AddStringsSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/AddStringsSln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/ExcelColumnNumberSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/ExcelColumnNumberSln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/ExcelColumnTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/ExcelColumnTitle.cs -------------------------------------------------------------------------------- /Math/Math.Lib/ExlColumnTitleSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/ExlColumnTitleSln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/Floyd'sTortoiseandHare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/Floyd'sTortoiseandHare.jpg -------------------------------------------------------------------------------- /Math/Math.Lib/HappyNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/HappyNumber.cs -------------------------------------------------------------------------------- /Math/Math.Lib/IssPalindromeSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/IssPalindromeSln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/Math.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/Math.Lib.csproj -------------------------------------------------------------------------------- /Math/Math.Lib/Math.Lib.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/Math.Lib.csproj.user -------------------------------------------------------------------------------- /Math/Math.Lib/MinimumMovesSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/MinimumMovesSln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/MissingNumberSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/MissingNumberSln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/Nthdigit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/Nthdigit.cs -------------------------------------------------------------------------------- /Math/Math.Lib/PalindromeNumberSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/PalindromeNumberSln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/PerfectNumberSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/PerfectNumberSln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/PowerOfThreeSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/PowerOfThreeSln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/PowerOfTwoSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/PowerOfTwoSln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Math/Math.Lib/ReverseIntegarSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/ReverseIntegarSln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/RomanToInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/RomanToInteger.cs -------------------------------------------------------------------------------- /Math/Math.Lib/Sqrtx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/Sqrtx.cs -------------------------------------------------------------------------------- /Math/Math.Lib/UglyNumberSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/UglyNumberSln.cs -------------------------------------------------------------------------------- /Math/Math.Lib/VedicSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.Lib/VedicSquare.png -------------------------------------------------------------------------------- /Math/Math.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.sln -------------------------------------------------------------------------------- /Math/Math.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.suo -------------------------------------------------------------------------------- /Math/Math.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math.v12.suo -------------------------------------------------------------------------------- /Math/Math/Math.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math/Math.csproj -------------------------------------------------------------------------------- /Math/Math/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math/Program.cs -------------------------------------------------------------------------------- /Math/Math/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Math/Math/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/README.md -------------------------------------------------------------------------------- /READMEOld.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/READMEOld.md -------------------------------------------------------------------------------- /Sort/WiggleSortSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Sort/WiggleSortSln.cs -------------------------------------------------------------------------------- /Stack/Stack.Lib/MinStackSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Stack/Stack.Lib/MinStackSln.cs -------------------------------------------------------------------------------- /Stack/Stack.Lib/NextGreaterSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Stack/Stack.Lib/NextGreaterSln.cs -------------------------------------------------------------------------------- /Stack/Stack.Lib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Stack/Stack.Lib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Stack/Stack.Lib/QueueUsingStackSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Stack/Stack.Lib/QueueUsingStackSln.cs -------------------------------------------------------------------------------- /Stack/Stack.Lib/Stack.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Stack/Stack.Lib/Stack.Lib.csproj -------------------------------------------------------------------------------- /Stack/Stack.Lib/StackUsingQueueSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Stack/Stack.Lib/StackUsingQueueSln.cs -------------------------------------------------------------------------------- /Stack/Stack.Lib/ValidParenthesesSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Stack/Stack.Lib/ValidParenthesesSln.cs -------------------------------------------------------------------------------- /Stack/Stack/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Stack/Stack/App.config -------------------------------------------------------------------------------- /Stack/Stack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Stack/Stack/Program.cs -------------------------------------------------------------------------------- /Stack/Stack/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Stack/Stack/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Stack/Stack/Stack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Stack/Stack/Stack.csproj -------------------------------------------------------------------------------- /Stack/Stack/Stack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Stack/Stack/Stack.sln -------------------------------------------------------------------------------- /Stack/Stack/Stack.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Stack/Stack/Stack.v12.suo -------------------------------------------------------------------------------- /String/StringSln.Lib/DetectCapitalSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln.Lib/DetectCapitalSln.cs -------------------------------------------------------------------------------- /String/StringSln.Lib/LengthOfLastWordSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln.Lib/LengthOfLastWordSln.cs -------------------------------------------------------------------------------- /String/StringSln.Lib/LongestCommonPrefixSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln.Lib/LongestCommonPrefixSln.cs -------------------------------------------------------------------------------- /String/StringSln.Lib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln.Lib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /String/StringSln.Lib/RansomNoteSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln.Lib/RansomNoteSln.cs -------------------------------------------------------------------------------- /String/StringSln.Lib/RepeatedSubstringSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln.Lib/RepeatedSubstringSln.cs -------------------------------------------------------------------------------- /String/StringSln.Lib/SegmentNumberSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln.Lib/SegmentNumberSln.cs -------------------------------------------------------------------------------- /String/StringSln.Lib/StringSln.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln.Lib/StringSln.Lib.csproj -------------------------------------------------------------------------------- /String/StringSln/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln/App.config -------------------------------------------------------------------------------- /String/StringSln/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln/Program.cs -------------------------------------------------------------------------------- /String/StringSln/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /String/StringSln/StringSln.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln/StringSln.csproj -------------------------------------------------------------------------------- /String/StringSln/StringSln.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln/StringSln.sln -------------------------------------------------------------------------------- /String/StringSln/StringSln.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/String/StringSln/StringSln.v12.suo -------------------------------------------------------------------------------- /TodayUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/TodayUpdate.md -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/BanlancedTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/BanlancedTree.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/BinaryTreePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/BinaryTreePath.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/BuildTreeByPreAndInorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/BuildTreeByPreAndInorder.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/CommonAncester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/CommonAncester.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/DiameterTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/DiameterTree.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/FindModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/FindModes.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/InorderStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/InorderStack.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/InvertTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/InvertTree.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/IsSameTreeSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/IsSameTreeSln.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/LeftLeafSum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/LeftLeafSum.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/LevelOrderTraversal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/LevelOrderTraversal.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/LevelTraversalTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/LevelTraversalTree.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/MaxMinDepth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/MaxMinDepth.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/OnePathSum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/OnePathSum.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/PreOrderStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/PreOrderStack.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/SameTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/SameTree.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/SortArrayToBalanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/SortArrayToBalanced.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/SymmetricTree .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/SymmetricTree .cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/TraversalTreeUsingStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/TraversalTreeUsingStack.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/TravesalUsingStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/TravesalUsingStack.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/Tree.TreeLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/Tree.TreeLib.csproj -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/TreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/TreeNode.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/TreePathSum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/TreePathSum.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/TreePaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/TreePaths.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/TreeTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/TreeTools.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/UniqueBSTSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/UniqueBSTSln.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/ZigzagLevelOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/ZigzagLevelOrder.cs -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/binarytrees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/binarytrees.jpg -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/leetcode-tree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/leetcode-tree.xml -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/stairs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/stairs.jpg -------------------------------------------------------------------------------- /Tree/Tree.TreeLib/triangles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.TreeLib/triangles.jpg -------------------------------------------------------------------------------- /Tree/Tree.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.sln -------------------------------------------------------------------------------- /Tree/Tree.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree.suo -------------------------------------------------------------------------------- /Tree/Tree/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree/Program.cs -------------------------------------------------------------------------------- /Tree/Tree/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tree/Tree/Tree.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree/Tree.csproj -------------------------------------------------------------------------------- /Tree/Tree/Tree.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree/Tree.csproj.user -------------------------------------------------------------------------------- /Tree/Tree/Tree.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree/Tree.sln -------------------------------------------------------------------------------- /Tree/Tree/Tree.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree/Tree.v12.suo -------------------------------------------------------------------------------- /Tree/Tree/test/testTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/Tree/Tree/test/testTree.cs -------------------------------------------------------------------------------- /TwoPointers/MergeSortedArraySln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/TwoPointers/MergeSortedArraySln.cs -------------------------------------------------------------------------------- /TwoPointers/MoveZeroesSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/TwoPointers/MoveZeroesSln.cs -------------------------------------------------------------------------------- /TwoPointers/ReverseVowelsSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/TwoPointers/ReverseVowelsSln.cs -------------------------------------------------------------------------------- /TwoPointers/TwoPointers.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/TwoPointers/TwoPointers.Lib.csproj -------------------------------------------------------------------------------- /TwoPointers/ValidPalindromeSln.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/TwoPointers/ValidPalindromeSln.cs -------------------------------------------------------------------------------- /UpdateHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/UpdateHistory.md -------------------------------------------------------------------------------- /tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/tool.png -------------------------------------------------------------------------------- /tool2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackzhenguo/leetcode-csharp/HEAD/tool2.png --------------------------------------------------------------------------------