逻辑拼接

import java.util.ArrayList;
import java.util.List;

public class LogicalMdxTest {

	public static void main(String[] args) {
		String[] input = new String[] { "a and b or c and d or e", "a", "a and b", "a or b", "a and b and c",
				"a or b or c", "a and b and c or d", "a or b and c and d" };

		for (String item : input) {
			List<LogicalMdx> mdx = getMdx(item);
			System.out.println(item);
			String mdxStr = getMdxStr(mdx);
			System.out.println(mdxStr);
			if (item.equals(mdxStr)) {
				System.out.println("Success-----");
			} else {
				System.out.println("Failed----");
			}
		}
	}

	private static String getMdxStr(List<LogicalMdx> mdx) {
		StringBuilder sb = new StringBuilder();
		for (LogicalMdx item : mdx) {
			sb.append(item.getPrefix());
			sb.append(item.getContent());
		}
		return sb.toString();
	}

	private static List<LogicalMdx> getMdx(String input) {
		List<LogicalMdx> result = new ArrayList<LogicalMdx>();
		String[] ands = input.split(" and ");
		LogicalMdx item = new LogicalMdx();
		for (int i = 0; i < ands.length; i++) {
			String and = ands[i];
			if (i > 0) {
				item.setPrefix(" and ");
			}
			String[] ors = and.split(" or ");
			for (int j = 0; j < ors.length; j++) {
				String or = ors[j];
				if (j > 0) {
					item.setPrefix(" or ");
				}
				item.setContent(or);
				result.add(item);
				item = new LogicalMdx();
			}
		}

		return result;
	}
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值