Skip to content

Commit 5068407

Browse files
committed
two pointers tag
1 parent cc3d08b commit 5068407

5 files changed

+255
-0
lines changed

TwoPointers/MergeSortedArraySln.cs

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace TwoPointers.Lib
8+
{
9+
//Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.
10+
11+
//Note:
12+
//You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold additional elements from nums2. The number of elements initialized in nums1 and nums2 are m and n respectively.
13+
14+
public class MergeSortedArraySln
15+
{
16+
public void Merge(int[] nums1, int m, int[] nums2, int n)
17+
{
18+
int i = m - 1; //指向nums1
19+
int j = n - 1; //指向nums2
20+
int k = m + n - 1; //指向合并位置
21+
while (j >= 0)
22+
{
23+
if (i >= 0 && nums1[i] > nums2[i])
24+
nums1[k--] = nums1[i--];
25+
else nums1[k--] = nums2[j--];
26+
27+
}
28+
}
29+
}
30+
}

TwoPointers/MoveZeroesSln.cs

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace TwoPointers.Lib
8+
{
9+
// Given an array nums, write a function to move all 0’s to the end of it while maintaining the relative order of the non-zero elements.
10+
11+
//For example, given nums = [0, 1, 0, 3, 12], after calling your function, nums should be [1, 3, 12, 0, 0].
12+
// Note:
13+
//1. You must do this in-place without making a copy of the array.
14+
//2. Minimize the total number of operations.
15+
public class MoveZeroesSln
16+
{
17+
public class Solution
18+
{
19+
public void MoveZeroes(int[] nums)
20+
{
21+
int i, j = 0; //j始终指向非零数
22+
for (i = 0; i < nums.Length; i++)
23+
{
24+
if (nums[i] == 0)
25+
{
26+
while (i < nums.Length && nums[i] == 0)
27+
i++;
28+
if (i < nums.Length)
29+
nums[j++] = nums[i];//找到num[i]不为0
30+
}
31+
else
32+
nums[j++] = nums[i];
33+
}
34+
//[0,j)为非零数,[j,nums.Length)应全清零。
35+
for (int k = j; k < nums.Length; k++)
36+
nums[k] = 0;
37+
38+
}
39+
}
40+
}
41+
}

TwoPointers/ReverseVowelsSln.cs

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace TwoPointers.Lib
8+
{
9+
// Write a function that takes a string as input and reverse only the vowels of a string.
10+
11+
//Example 1:
12+
13+
//Given s = "hello", return "holle".
14+
//1
15+
//1
16+
//Example 2:
17+
18+
19+
//Given s = "leetcode", return "leotcede".
20+
public class ReverseVowelsSln
21+
{
22+
public class Solution
23+
{
24+
private List<char> vowels = new List<char> { 'a', 'A', 'e', 'E', 'i', 'I', 'o', 'O', 'u', 'U' };
25+
private char[] chars;
26+
27+
public string ReverseVowels(string s)
28+
{
29+
chars = s.ToCharArray();
30+
int lo = 0;
31+
int hi = s.Length - 1;
32+
while (lo < hi)
33+
reverseVowels(ref lo, ref hi);
34+
return new string(chars);
35+
}
36+
37+
public void reverseVowels(ref int lo, ref int hi)
38+
{
39+
for (int i = lo; i <= hi; i++, lo++)
40+
{
41+
if (vowels.Contains(chars[i]))
42+
break;
43+
}
44+
for (int i = hi; i >= lo; i--, hi = i)
45+
{
46+
if (vowels.Contains(chars[i]))
47+
break;
48+
}
49+
50+
if (lo < hi)
51+
{
52+
if (chars[lo] != chars[hi])//交换字符
53+
{
54+
char tmp = chars[lo];
55+
chars[lo] = chars[hi];
56+
chars[hi] = tmp;
57+
}
58+
++lo;
59+
--hi;
60+
}
61+
}
62+
}
63+
64+
65+
}
66+
}

TwoPointers/TwoPointers.Lib.csproj

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{FC40770B-F0C2-489D-BAF0-B50F90701B3D}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>TwoPointers.Lib</RootNamespace>
11+
<AssemblyName>TwoPointers.Lib</AssemblyName>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<DebugSymbols>true</DebugSymbols>
17+
<DebugType>full</DebugType>
18+
<Optimize>false</Optimize>
19+
<OutputPath>bin\Debug\</OutputPath>
20+
<DefineConstants>DEBUG;TRACE</DefineConstants>
21+
<ErrorReport>prompt</ErrorReport>
22+
<WarningLevel>4</WarningLevel>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25+
<DebugType>pdbonly</DebugType>
26+
<Optimize>true</Optimize>
27+
<OutputPath>bin\Release\</OutputPath>
28+
<DefineConstants>TRACE</DefineConstants>
29+
<ErrorReport>prompt</ErrorReport>
30+
<WarningLevel>4</WarningLevel>
31+
</PropertyGroup>
32+
<ItemGroup>
33+
<Reference Include="System" />
34+
<Reference Include="System.Core" />
35+
<Reference Include="System.Xml.Linq" />
36+
<Reference Include="System.Data.DataSetExtensions" />
37+
<Reference Include="Microsoft.CSharp" />
38+
<Reference Include="System.Data" />
39+
<Reference Include="System.Xml" />
40+
</ItemGroup>
41+
<ItemGroup>
42+
<Compile Include="MergeSortedArraySln.cs" />
43+
<Compile Include="MoveZeroesSln.cs" />
44+
<Compile Include="ReverseVowelsSln.cs" />
45+
<Compile Include="Properties\AssemblyInfo.cs" />
46+
<Compile Include="ValidPalindromeSln.cs" />
47+
</ItemGroup>
48+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
49+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
50+
Other similar extension points exist, see Microsoft.Common.targets.
51+
<Target Name="BeforeBuild">
52+
</Target>
53+
<Target Name="AfterBuild">
54+
</Target>
55+
-->
56+
</Project>

TwoPointers/ValidPalindromeSln.cs

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace TwoPointers.Lib
8+
{
9+
// Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
10+
11+
//For example,
12+
13+
//"A man, a plan, a canal: Panama" is a palindrome.
14+
//"race a car" is not a palindrome.
15+
class ValidPalindromeSln
16+
{
17+
public bool IsPalindrome(string s)
18+
{
19+
int i, j;
20+
if (s == string.Empty) return true;
21+
22+
for (i = 0, j = s.Length - 1; i < s.Length && j > 0; i++, j--)
23+
{
24+
while (i < s.Length && !isAlphanumeric(s[i]))
25+
i++;
26+
27+
while (i < j && !isAlphanumeric(s[j]))
28+
j--;
29+
30+
if (i >= j) //碰头表示成功!
31+
break;
32+
33+
if (!isEqual(s[i], s[j]))
34+
return false;
35+
}
36+
return true;
37+
}
38+
39+
private bool isAlphanumeric(char c)
40+
{
41+
return char.IsLetter(c) || char.IsDigit(c);
42+
}
43+
44+
private bool isEqual(char c1, char c2)
45+
{
46+
//要做字符和字母的区别对待,数字和字母字符一定不相等。
47+
if (char.IsDigit(c1) && char.IsLetter(c2))
48+
return false;
49+
if (char.IsDigit(c2) && char.IsLetter(c1))
50+
return false;
51+
52+
//如果不考虑以上,请参考数字0和字符P的取值。
53+
54+
if (c1 == c2) return true;
55+
56+
int c1int = Convert.ToInt32(c1);
57+
int c2int = Convert.ToInt32(c2);
58+
return Math.Abs(c1int - c2int) == 32;
59+
}
60+
61+
}
62+
}

0 commit comments

Comments
 (0)