摘要: //判断一个字符串是否是逆序得来//在str1字符串后在添加一个str1,这样反转的字符串都可以在增加后的字符串找到abcdefabcdef、 #include <stdio.h>#include <string.h>#pragma warning(disable:4996) int is_left 阅读全文
posted @ 2022-04-18 18:51 藏进夜里躲在光下 阅读(69) 评论(0) 推荐(0)
摘要: #include <stdio.h> int FindNum(int arr[3][3], int k, int row, int col){ int x = 0; int y = col - 1; while (x <= col - 1 &&y >= 0) { if (arr[x][y]>k) / 阅读全文
posted @ 2022-04-18 16:00 藏进夜里躲在光下 阅读(40) 评论(0) 推荐(0)