判断字符串是否构成回文_构成字符串回文的最小删除数

判断字符串是否构成回文

Problem statement:

问题陈述:

Given string str find the minimum number of deletions such that the resultant string is a palindrome.

给定的字符串str找到最小的删除数,以使最终的字符串成为回文。

    Input:
Each input consists of the string str
Output:
Print the minimum number of characters 
to be deleted to make the string a palindrome
Constraints:
String length will be under 1000

Example:

例:

    Input:
String str: "includecpni"
Output:
4

Explanation of Example:

示例说明:

    So, we need to find the longest palindromic subsequence 
and delete the rest of the characters.
Here,
The longest palindromic sub-sequences are:
Inclcni
Incucni
Incdcni
Incecni
Incpcni
All these are of same length and are palindromes
So, minimum characters to delete are 4

Solution Approach:

解决方法:

We know what's a palindrome is? A palindrome is a string that is the same as its reverse order.

我们知道什么是回文吗? 回文是与其相反顺序相同的字符串。

That means to find the longest palindromic subsequence, we need to check the longest common subsequence between the string itself and its reverse string.

这意味着要找到最长回文子序列 ,我们需要检查字符串本身及其反向字符串之间的最长公共子序列。

So, basically

所以,基本上

    LPS(s) = LCS(s,reverse(s))
Where,
LPS(s) = longest palindromic subsequence for string s
LCS(s,reverse(s)) = Longest Common subsequence for 
string s and reverse of string s 

So, to find the longest palindromic subsequence:

因此,要找到最长的回文子序列:

  1. Find the reverse of the string

    查找字符串的反面

  2. Do an LCS between the string and its reverse string

    在字符串及其反向字符串之间执行LCS

  3. Result=string length-longest palindromic subsequence length

    结果=字符串长度-最长回文子序列长度

1) To find the reverse of the string

1)找到字符串的反面

    string reverse(string s,int n){
string p="";
for(int i=n-1;i>=0;i--)
p+=string(1,s[i]); //append characters from last    
return p;
}

2) LCS between the string and its reverse string

2)字符串及其反向字符串之间的LCS

To detail how to find Longest Common subsequence b/w any two strings, go through this article, Longest Common subsequence

要详细了解如何找到任意两个字符串的最长公共子序列 ,请仔细阅读本文“ 最长公共子序列”

    L = length of the string,reverse of the string
Str1 = string itself
Str2 = Reverse of the string
1.  Initialize DP[l+1][l+1]  to 0
2.  Convert the base case of recursion:
for i=0 to l
DP[i][0]=0;
for i=0 to l
DP[0][i]=0;
Fill the DP table 
for i=1 to l    //i be the subproblem length for the string
for j=1 to l //j be the subproblem length for reverse of the string
if(str1[i-1]==str2[j-1]) 
DP[i][j]=DP[i-1][j-1]+1;
else
DP[i][j]=max(DP[i-1][j],DP[i][j-1]);
end for
end for  
4.  The final output will be DP[l][l]
Final step is to return minimum number of deletion which l-DP[l][l]
This will lead to the final result.

There is another way to find the longest palindromic subsequence, without using LCS. I wouldn't explain the detailed solution, rather try to think and implement your own.

还有另一种无需使用LCS即可找到最长回文子序列的方法。 我不会解释详细的解决方案,而是尝试考虑并实施自己的解决方案。

The recursion is,

递归是

    LPS(I,j) = LPS(i+1,j-1)+2 
if 
str1[i] == str[j]
Else 
LPS(I,j) = max(LPS(i+1,j), LPS(i,j-1))

Convert the above recursion into DP while taking care of base cases.

将上述递归转换为DP,同时注意基本情况。

C++ Implementation:

C ++实现:

#include <bits/stdc++.h>
using namespace std;
string reverse(string s, int n)
{
string p = "";
for (int i = n - 1; i >= 0; i--)
p += string(1, s[i]);
return p;
}
//LCS of the strings
int LCS(string s1, string s2, int n)
{
int dp[n + 1][n + 1];
for (int i = 0; i <= n; i++)
dp[0][i] = 0;
for (int i = 0; i <= n; i++)
dp[i][0] = 0;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
if (s1[i - 1] == s2[j - 1])
dp[i][j] = 1 + dp[i - 1][j - 1];
else
dp[i][j] = std::max(dp[i][j - 1], dp[i - 1][j]);
}
}
return dp[n][n];
}
int main()
{
string s1;
cout << "Enter string:\n";
cin >> s1;
int n = s1.length();
//reverse of string
string s2 = reverse(s1, n);
//find LCS of the strings, result=n-LCS(s1,s2)
cout << "minimum characters to remove " << n - LCS(s1, s2, n) << endl;
return 0;
}

Output

输出量

Enter string:
includecpni
minimum characters to remove 4

翻译自: https://www.includehelp.com/icp/minimum-number-of-deletions-to-make-a-string-palindrome.aspx

判断字符串是否构成回文

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/380020.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

imul和idiv指令

imul 有符号乘法指令&#xff0c;分单操作数&#xff0c;双操作数和但操作数 单操作数&#xff1a;此形式与mul指令使用完全相同&#xff0c;操作数乘以al、ax、或eax寄存器中的值&#xff0c;乘积分别存储到ax、dx&#xff1a;ax或edx&#xff1a;eax中 执行指令&#xff1a…

Ajax的注册应用

最近发现Ajax在用户注册表单和用户登录表单方面应用&#xff0c;最能体现Ajax的交互特点&#xff0c;因此又是写了一个习作&#xff01; 演示效果 新开窗口地址&#xff1a; http://www.klstudio.com/demo/ajax/reg.htm 下载地址:http://www.klstudio.com/demo/ajax/reg.rar &…

Java——集合(模拟斗地主洗牌和发牌进行排序)

//改进版&#xff0c;没有进行按牌的地位从小到大排序 package com.yy.test;import java.util.ArrayList; import java.util.Collections;public class Test2 {/*** * A&#xff1a;案例演示* 模拟斗地主洗牌核发牌&#xff0c;牌没有排序* * 分析&#xff1a;* 1&#xff0c;…

应用程序控件

活动指示器 当任务或进程已经完成时&#xff0c;活动指示器就会消失。推荐您使用这种默认行为&#xff0c;因为用户期望在有动作发生时看到活动指示器&#xff0c;而且他们会将静止不动的活动指示器与停滞的进程联想到一起。 要了解如何显示网络活动指示器&#xff0c;请参考UI…

离散数学与集合论_离散数学中的集合论和集合类型

离散数学与集合论集合论 (Set theory) The set is a well-defined collection of definite objects of perception or thought and the Georg Cantor is the father of set theory. A set may also be thought of as grouping together of single objects into a whole. The ob…

XADD和NEG命令

XADD 交换相加指令&#xff0c;先交换然后相加 比如说&#xff1a; xadd eax&#xff0c;ecx /* 相当于&#xff1a;先执行&#xff1a;xchg eax,ecx然后执行&#xff1a;add eax,ecx */此时eax2&#xff0c;ecx3&#xff0c;执行完&#xff1a;eax5&#xff0c;ecx2 neg …

Visual C# 2008+SQL Server 2005 数据库与网络开发--11.3.2 LINQ to SQL对数据库建模

Visual Studio 2008版本中为LINQ to SQL提供了一个特别的设计器&#xff0c;使用这个设计器可以很方便的将数据库可视化地转换为LINQ to SQL对象模型。在LINQ to SQL中&#xff0c;设计器在关系数据库的数据模型和开发语言之间建立一座桥梁。当应用程序运行时&#xff0c;LINQ …

Java——异常处理(键盘录入一个整数,输出其对于二进制)

例题&#xff1a; 键盘录入一个int类型的整数&#xff0c;对其求二进制表现形式 如果录入的整数过大&#xff0c;给予提示&#xff0c;录入的整数过大&#xff0c;请重新录入一个整数BigInteger 如果录入的是小数&#xff0c;给予提示&#xff0c;录入的是小数&#xff0c;请…

认清SQL_Server_2005的基于行版本控制的两种隔离级别

--认清SQL_Server_2005的基于行版本控制的两种隔离级别--By:zc_0101 Date:2010-03-31--快照隔离级别(snapshot)和已提交读快照隔离级别(read committed snapshot)--特点&#xff1a;在这两种隔离级别下&#xff0c;读取数据时不再请求共享锁&#xff0c;而且永远不会与修改进程…

Java SecurityManager checkPermission()方法与示例

Syntax: 句法&#xff1a; public void checkPermission(Permission perm);public void checkPermission(Permission perm, Object cntxt);SecurityManager类的checkPermission()方法 (SecurityManager Class checkPermission() method) checkPermission() method is availa…

汇编test指令

功能&#xff1a;将两个操作数进行逻辑与运算&#xff0c;并根据运算结果设置相关的标志位&#xff0c;并不改变操作数1和操作数2的值 test 操作数1&#xff0c;操作数2我们经常用test来判断一个值是否为0&#xff0c;用法&#xff1a; test 操作数1&#xff0c;操作数1比如我…

CSS兼容IE/Firefox要点

首先我们说说firefox和IE对CSS的宽度显示有什么不同&#xff1a; 其实CSS ’width’ 指的是标准CSS中所指的width的宽度&#xff0c;在firefox中的宽度就是这个宽度。它只包含容器中内容的宽度。而Internet Explorer ’width’则是指整个容器的宽度&#xff0c;包括内容&#x…

Java GregorianCalendar computeFields()方法与示例

GregorianCalendar类computeFields()方法 (GregorianCalendar Class computeFields() method) computeFields() method is available in java.util package. 在java.util包中提供了validateFields()方法 。 computeFields() method is used to compute the calendar fields and…

JS、JNS、JP(JPE)、JNP(JPO)指令详解、从原理上解释

JS 格式&#xff1a; js 地址当执行到JS指令时&#xff0c;如果标志位SF1&#xff0c;则跳转到指定的地址&#xff0c;如果SF0&#xff0c;不跳转 比如&#xff1a; cmp eax&#xff0c;ecx js 0040100c此时eax0&#xff0c;ecx1&#xff0c;执行完cmp命令&#xff0c;符号标…

zz如何保持专心

养成好习惯 养成在固定时间、固定地点专心学习工作的好习惯。 如果可能&#xff0c;在进入学习或者工作状态前做一些小仪式&#xff0c;比如摆个姿势&#xff0c;戴上学习帽什么的。就好像在运动前做准备活动一样&#xff0c;给身体一个提示。让头脑做好准备 避免在学习前做什么…

Java——File类

一&#xff0c;File类的概述和构造方法 A&#xff1a;file类的概述 file类可以理解成一个路径 文件夹或者是文件夹路径 路径分为绝对路径和相对路径 绝对路径是一个固定的路径&#xff0c;从盘符开始 这里的G&#xff1a;\TIM 就是一个绝对路径&#xff0c;是一个固定的路…

Linux进程环境

一 main函数 当内核使用一个exec函数执行C程序时&#xff0c;在调用main函数之前先调用一个特殊的启动例程&#xff0c;可执行程序将此例程指定为程序的起始地址。启动例程从内核获取命令行参数和环境变量&#xff0c;然后为调用main函数做好准备。 二 进程终止 进程终止的方式…

JO、JNO、JB、JNB命令详解(从原理上)

JO 当执行到jo命令时&#xff0c;如果ZF标志位为1&#xff0c;则跳转&#xff0c;反之不跳转 add eax,ecx jo 00401000c此时eax7fff ffff &#xff0c;ecx0000 0001&#xff0c;执行完add命令&#xff0c;OF1&#xff0c;原因是eax存储的最大值是7fffffff&#xff0c;再加1&a…

java 根据类名示例化类_Java类类getProtectionDomain()方法及示例

java 根据类名示例化类类class getProtectionDomain()方法 (Class class getProtectionDomain() method) getProtectionDomain() method is available in java.lang package. getProtectionDomain()方法在java.lang包中可用。 getProtectionDomain() method is used to return …

snagit 9.0注册码

8.0的注册码 A5CCU-RYNM4-C9ECC-5CWW9-B5R7B 5HCC5-4CCC9-NGXCM-XYDZ5-H6ER6 HLHAD-2CZLC-8XYDC-CC5CB-P289A D5DSC-WZCBM-JRHSC-QVTEV-TR7R8 snagit 9.0: name:Team Z.W.T sn:XMYU5-9CMBC-5SLBZ-DKML2-JE8M5 谢谢 name:Team Z.W.T sn: WDYMP-8ALRM-GVVV2-PH8VK-6MD27 Z…