chars
-
C# new string(char *)
有些时候string 会快速变换显示,而我们不希望出现大量的string对象影响GC 所以我使用unsafe的char* 去更新显示` m_chars = m_str.ToChar…
-
【Java面试手册-算法篇】给定一个非空字符串,最多删除一个字符,判断是否能成为回文字符串
回文字符串是指一个字符串从左到右与从右到左遍历得到的序列是相同的。也就是说不管从左读,还是从右读,都是一样的。 比如 “abcba”、“aaa” 是回文字符串,而 “abca” 不…
-
Java通过异或运算实现字符串解密
public class MyStringUtils { // public static String encryptString(String target,Integer f…
-
Android 自用Base64编码类
/** * Created by tab on 2017/10/10 */ public class Base64Encoder extends FilterOutputStrea…
-
LeetCode 738. Monotone Increasing Digits
LeetCode 738. Monotone Increasing Digits (单调递增的数字) 题目 链接 https://leetcode.cn/problems/mono…
-
shell笔记
1 && ||ping -c1 www.baidu.com && echo “ok” || echo “no&#…
-
Linux中的管道
Linux中的管道 在lab6中学习了管道相L关的概念,为了加深理解,总结了真正的Linux系统中管道的相关内容。主要侧重于Linux的源码解读。 什么是管道 管道(pipe)是L…