18 lines
384 B
C
18 lines
384 B
C
|
|
/**
|
||
|
|
* @file max_diff.h
|
||
|
|
* @brief 连续四个周期内最大的差值
|
||
|
|
* @author Cat (null.null.null@qq.com)
|
||
|
|
* @version 0.1
|
||
|
|
* @date 2021-09-17
|
||
|
|
*
|
||
|
|
* Copyright: Baosight Co. Ltd.
|
||
|
|
* DO NOT COPY/USE WITHOUT PERMISSION
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
#pragma once
|
||
|
|
#include <boost/regex.hpp>
|
||
|
|
#include <iostream>
|
||
|
|
#include <sstream>
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
std::string replace_max_diff_macro(std::string&& exp_str);
|