日撸java_day19

第 19 天: 字符串匹配

19.1 String 是 Java 常用的类, 这里重新实现下部分功能.
19.2 转义符 , 有了它才能正常打印引号.
19.3 简单的越界检查.

package datastructures;

/**
 * ClassName: MyString
 * Package: datastructures
 * Description: My string. String is a class provided by the language, so I use another name.
 * It is essentially a sequential list with char type elements.
 *
 * @Author: luv_x_c
 * @Create: 2023/4/23 9:33
 */
public class MyString {
    /**
     * The maximal length.
     */
    public static final int MAX_LENGTH = 10;

    /**
     * The actual length.
     */
    int length;

    /**
     * The data.
     */
    char[] data;

    /**
     * Construct an empty char array.
     */
    public MyString() {
        length = 0;
        data = new char[MAX_LENGTH];
    }// Of the first constructor

    /**
     * Construct using a system defined string.
     *
     * @param paraString The given string. Its length should not exceed MAX_LENGTH - 1.
     */
    public MyString(String paraString) {
        data = new char[MAX_LENGTH];
        length = paraString.length();

        //Copy data.
        for (int i = 0; i < length; i++) {
            data[i] = paraString.charAt(i);
        }// Of for i
    } // Of the second constructor

    /**
     * Overrides the method claimed in Object, the superclass of any class.
     *
     * @return A String.
     */
    public String toString() {
        String resultString = "";
        for (int i = 0; i < length; i++) {
            resultString += data[i];
        }// Of for i

        return resultString;
    }// Of toString

    /**
     * Locate the position of a substring.
     *
     * @param paraMyString The given substring.
     * @return The first position. -1 for no matching.
     */
    public int locate(MyString paraMyString) {
        boolean tempMatch = false;
        for (int i = 0; i < length - paraMyString.length + 1; i++) {
            tempMatch = true;
            for (int j = 0; j < paraMyString.length; j++) {
                if (data[i + j] != paraMyString.data[j]) {
                    tempMatch = false;
                    break;
                }// Of if
            }// Of for j

            if (tempMatch) {
                return i;
            }// Of if
        }// Of for i
        return -1;
    } //Of locate

    /**
     * Get a substring
     *
     * @param paraStartPosition The start position in the original string.
     * @param paraLength        The length of the new string.
     * @return Get a substring.
     */
    public MyString substring(int paraStartPosition, int paraLength) {
        if (paraStartPosition + paraLength > length) {
            System.out.println("The bound is exceed. ");
            return null;
        }// Of if

        MyString resultString = new MyString();
        resultString.length = paraLength;
        for (int i = 0; i < paraLength; i++) {
            resultString.data[i] = data[paraStartPosition + 1];
        }// Of for i

        return resultString;
    }//Of subString

    /**
     * The entrance  of the program..
     *
     * @param args Not used now.
     */
    public static void main(String[] args) {
        MyString tempFirstString = new MyString("I like ik.");
        MyString tempSecondString = new MyString("ik");
        int tempPosition = tempFirstString.locate(tempSecondString);
        System.out.println("The position of \"" + tempSecondString + "\" in \"" + tempFirstString
                + "\" is: " + tempPosition);

        MyString tempThirdString = new MyString("ki");
        tempPosition = tempFirstString.locate(tempThirdString);
        System.out.println("The position of \"" + tempThirdString + "\" in \"" + tempFirstString
                + "\" is: " + tempPosition);

        tempThirdString = tempFirstString.substring(1, 2);
        System.out.println("The substring is: \"" + tempThirdString + "\"");

        tempThirdString = tempFirstString.substring(5, 5);
        System.out.println("The substring is: \"" + tempThirdString + "\"");

        tempThirdString = tempFirstString.substring(5, 6);
        System.out.println("The substring is: \"" + tempThirdString + "\"");
    }// Of main
}// Of class MyString

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值