1033 - Generating Palindromes(傻DP)

最小成本回文生成器
本文介绍了一种算法,该算法能够确定将任意给定字符串转换为回文所需的最少字符插入数量。通过动态规划方法,文章详细解释了如何计算这一最小成本,并提供了完整的C++实现代码。

By definition palindrome is a string which is not changed when reversed. “MADAM” is a nice example of palindrome. It is an easy job to test whether a given string is a palindrome or not. But it may not be so easy to generate a palindrome.

Here we will make a palindrome generator which will take an input string and return a palindrome. You can easily verify that for a string of length n, no more than (n - 1) characters are required to make it a palindrome. Consider “abcd” and its palindrome “abcdcba” or “abc” and its palindrome “abcba”. But life is not so easy for programmers!! We always want optimal cost. And you have to find the minimum number of characters required to make a given string to a palindrome if you are only allowed to insert characters at any position of the string.

Input
Input starts with an integer T (≤ 200), denoting the number of test cases.

Each case contains a string of lowercase letters denoting the string for which we want to generate a palindrome. You may safely assume that the length of the string will be positive and no more than 100.

Output
For each case, print the case number and the minimum number of characters required to make string to a palindrome.

Sample Input
Output for Sample Input
6
abcd
aaaa
abc
aab
abababaabababa
pqrsabcdpqrs
Case 1: 3
Case 2: 0
Case 3: 2
Case 4: 1
Case 5: 0
Case 6: 9

最少填多少个字符成回文。

#include<cstdio>
#include<cstring>
#include<iostream>
#include<queue>
#include<vector>
#include<algorithm>
#include<string>
#include<cmath>
#include<set>
#include<map>
#include<vector>
#include<stack>
#include<utility>
#include<sstream>
using namespace std;
typedef long long ll;
const int inf = 0x3f3f3f3f;
const int maxn = 1005;
int t;
char s[105];
int dp[105][105];
int dfs(int l,int r)
{
    if(dp[l][r] != -1)return dp[l][r];
    if(l >= r)return dp[l][r] = 0;
    if(s[l] == s[r])
        return dp[l][r] = dfs(l + 1,r - 1);
    else
        return dp[l][r] = min(dfs(l + 1,r),dfs(l,r - 1)) + 1;
}
int main()
{
    #ifdef LOCAL
    freopen("C:\\Users\\ΡΡ\\Desktop\\in.txt","r",stdin);
    //freopen("C:\\Users\\ΡΡ\\Desktop\\out.txt","w",stdout);
    #endif // LOCAL
    int kase = 1;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%s",s);
        int len = strlen(s);
        memset(dp,-1,sizeof(dp));
        printf("Case %d: %d\n",kase++,dfs(0,len - 1));
    }
    return 0;
}
2025-10-14 10:06:00.251 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_92 2025-10-14 10:06:00.255 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_94 2025-10-14 10:06:00.259 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_93 2025-10-14 10:06:00.260 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_91 2025-10-14 10:06:00.261 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_92 2025-10-14 10:06:00.262 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_94 2025-10-14 10:06:00.263 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_93 2025-10-14 10:06:00.269 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_95 2025-10-14 10:06:00.283 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_94 2025-10-14 10:06:00.286 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_92 2025-10-14 10:06:00.288 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_93 2025-10-14 10:06:00.290 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_95 2025-10-14 10:06:00.291 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_94 2025-10-14 10:06:00.296 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_96 2025-10-14 10:06:00.301 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_95 2025-10-14 10:06:00.303 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_93 2025-10-14 10:06:00.304 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_94 2025-10-14 10:06:00.305 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_96 2025-10-14 10:06:00.306 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_95 2025-10-14 10:06:00.311 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_97 2025-10-14 10:06:00.324 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_96 2025-10-14 10:06:00.326 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_94 2025-10-14 10:06:00.327 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_95 2025-10-14 10:06:00.328 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_97 2025-10-14 10:06:00.329 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_96 2025-10-14 10:06:00.336 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_98 2025-10-14 10:06:00.341 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_97 2025-10-14 10:06:00.344 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_95 2025-10-14 10:06:00.345 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_96 2025-10-14 10:06:00.346 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_98 2025-10-14 10:06:00.347 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_97 2025-10-14 10:06:00.354 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_99 2025-10-14 10:06:00.365 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_98 2025-10-14 10:06:00.366 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_96 2025-10-14 10:06:00.367 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_97 2025-10-14 10:06:00.368 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_99 2025-10-14 10:06:00.368 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryAllUsingGET_3 2025-10-14 10:06:00.369 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_98 2025-10-14 10:06:00.373 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_100 2025-10-14 10:06:00.377 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_99 2025-10-14 10:06:00.378 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_97 2025-10-14 10:06:00.379 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_98 2025-10-14 10:06:00.380 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_100 2025-10-14 10:06:00.381 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_99 2025-10-14 10:06:00.384 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_101 2025-10-14 10:06:00.387 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_100 2025-10-14 10:06:00.388 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_98 2025-10-14 10:06:00.388 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_99 2025-10-14 10:06:00.389 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_101 2025-10-14 10:06:00.390 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_100 2025-10-14 10:06:00.393 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_102 2025-10-14 10:06:00.397 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_101 2025-10-14 10:06:00.397 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_99 2025-10-14 10:06:00.398 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_100 2025-10-14 10:06:00.399 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_102 2025-10-14 10:06:00.399 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_101 2025-10-14 10:06:00.403 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_103 2025-10-14 10:06:00.406 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_102 2025-10-14 10:06:00.407 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_100 2025-10-14 10:06:00.407 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_101 2025-10-14 10:06:00.408 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_103 2025-10-14 10:06:00.408 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_102 2025-10-14 10:06:00.409 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_104 2025-10-14 10:06:00.415 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_103 2025-10-14 10:06:00.416 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_101 2025-10-14 10:06:00.417 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_102 2025-10-14 10:06:00.417 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_104 2025-10-14 10:06:00.421 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: listSortUsingGET_15 2025-10-14 10:06:00.422 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_103 2025-10-14 10:06:00.423 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_105 2025-10-14 10:06:00.424 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: querycartodayaddcountUsingGET_2 2025-10-14 10:06:00.428 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_104 2025-10-14 10:06:00.429 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_102 2025-10-14 10:06:00.430 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_103 2025-10-14 10:06:00.431 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_105 2025-10-14 10:06:00.432 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_104 2025-10-14 10:06:00.436 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_106 2025-10-14 10:06:00.441 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_105 2025-10-14 10:06:00.442 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_103 2025-10-14 10:06:00.443 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_104 2025-10-14 10:06:00.443 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_106 2025-10-14 10:06:00.444 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_105 2025-10-14 10:06:00.445 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByStatusUsingGET_1 2025-10-14 10:06:00.450 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_107 2025-10-14 10:06:00.451 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: querySortIdUsingGET_9 2025-10-14 10:06:00.454 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_106 2025-10-14 10:06:00.455 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_104 2025-10-14 10:06:00.457 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_105 2025-10-14 10:06:00.458 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_107 2025-10-14 10:06:00.462 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: listSortUsingGET_16 2025-10-14 10:06:00.463 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_106 2025-10-14 10:06:00.466 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_108 2025-10-14 10:06:00.467 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: querySortIdUsingGET_10 2025-10-14 10:06:00.471 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_107 2025-10-14 10:06:00.472 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_105 2025-10-14 10:06:00.472 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_106 2025-10-14 10:06:00.473 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_108 2025-10-14 10:06:00.475 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_107 2025-10-14 10:06:00.479 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_109 2025-10-14 10:06:00.485 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_108 2025-10-14 10:06:00.486 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_106 2025-10-14 10:06:00.490 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_107 2025-10-14 10:06:00.492 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_109 2025-10-14 10:06:00.493 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_108 2025-10-14 10:06:00.497 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_110 2025-10-14 10:06:00.502 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_109 2025-10-14 10:06:00.517 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_107 2025-10-14 10:06:00.518 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_108 2025-10-14 10:06:00.519 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_110 2025-10-14 10:06:00.523 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_109 2025-10-14 10:06:00.524 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByOpenIdUsingGET_1 2025-10-14 10:06:00.527 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_111 2025-10-14 10:06:00.528 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: querycountByOpenIdUsingGET_1 2025-10-14 10:06:00.540 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_110 2025-10-14 10:06:00.541 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_108 2025-10-14 10:06:00.542 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_109 2025-10-14 10:06:00.544 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_111 2025-10-14 10:06:00.545 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_110 2025-10-14 10:06:00.551 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_112 2025-10-14 10:06:00.555 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_111 2025-10-14 10:06:00.555 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_109 2025-10-14 10:06:00.556 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_110 2025-10-14 10:06:00.557 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_112 2025-10-14 10:06:00.557 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_111 2025-10-14 10:06:00.560 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_113 2025-10-14 10:06:00.563 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_112 2025-10-14 10:06:00.563 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_110 2025-10-14 10:06:00.563 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_111 2025-10-14 10:06:00.564 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_113 2025-10-14 10:06:00.567 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_112 2025-10-14 10:06:00.569 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_114 2025-10-14 10:06:00.606 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_113 2025-10-14 10:06:00.606 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_111 2025-10-14 10:06:00.607 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_112 2025-10-14 10:06:00.608 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_114 2025-10-14 10:06:00.611 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: listSortUsingGET_17 2025-10-14 10:06:00.612 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_113 2025-10-14 10:06:00.613 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_115 2025-10-14 10:06:00.618 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_114 2025-10-14 10:06:00.620 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_112 2025-10-14 10:06:00.620 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_113 2025-10-14 10:06:00.621 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_115 2025-10-14 10:06:00.623 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: listSortUsingGET_18 2025-10-14 10:06:00.624 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_114 2025-10-14 10:06:00.626 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_116 2025-10-14 10:06:00.631 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_115 2025-10-14 10:06:00.632 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_113 2025-10-14 10:06:00.633 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_114 2025-10-14 10:06:00.634 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_116 2025-10-14 10:06:00.637 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: listSortUsingGET_19 2025-10-14 10:06:00.638 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_115 2025-10-14 10:06:00.639 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_117 2025-10-14 10:06:00.643 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_116 2025-10-14 10:06:00.643 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_114 2025-10-14 10:06:00.644 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_115 2025-10-14 10:06:00.645 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_117 2025-10-14 10:06:00.649 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: listSortUsingGET_20 2025-10-14 10:06:00.650 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_116 2025-10-14 10:06:00.651 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_118 2025-10-14 10:06:00.655 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_117 2025-10-14 10:06:00.656 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_115 2025-10-14 10:06:00.657 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_116 2025-10-14 10:06:00.658 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_118 2025-10-14 10:06:00.659 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_117 2025-10-14 10:06:00.662 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_119 2025-10-14 10:06:01.542 [main] INFO o.s.scheduling.quartz.SchedulerFactoryBean:727 - Starting Quartz Scheduler now 2025-10-14 10:06:01.891 [main] INFO org.quartz.core.QuartzScheduler:547 - Scheduler MyScheduler_$_DESKTOP-GN66K4T1760407550298 started. 2025-10-14 10:06:01.927 [main] INFO org.jeecg.JeecgSystemApplication:61 - Started JeecgSystemApplication in 27.984 seconds (JVM running for 29.317) 2025-10-14 10:06:01.936 [main] INFO org.jeecg.JeecgSystemApplication:38 - ---------------------------------------------------------- Application Jeecg-Boot is running! Access URLs: Local: http://localhost:9005/jeecg-boot/ External: http://192.168.110.52:9005/jeecg-boot/ Swagger文档: http://192.168.110.52:9005/jeecg-boot/doc.html ---------------------------------------------------------- 2025-10-14 10:06:02.141 [RMI TCP Connection(5)-192.168.110.52] INFO o.a.c.c.C.[Tomcat].[localhost].[/jeecg-boot]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet' 2025-10-14 10:06:02.141 [RMI TCP Connection(5)-192.168.110.52] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet' 2025-10-14 10:06:02.172 [RMI TCP Connection(5)-192.168.110.52] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 31 ms 解释一下
最新发布
10-15
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值