c++查找DNA中子序列

DNA子序列的选择和分析是基因组学、分子生物学和生物信息学等领域研究的重要组成部分,对理解基因组结构和功能、进化过程以及疾病机理具有重要意义。以下是简单的函数示例,用于返回给定子序列在DNA中的所有位置。

#include <iostream>
#include <string>
#include <vector>

std::vector<size_t> findSubstringPositions(const std::string& str, const std::string& sub) {
    std::vector<size_t> positions;
    size_t pos = str.find(sub, 0);
    while (pos != std::string::npos) {
        positions.push_back(pos);
        pos = str.find(sub, pos + 1);
    }
    return positions;
}

int main() {
    std::string str = "TGACGCTGACGTCGCTAG";
    std::string sub = "GCT";

    std::vector<size_t> positions = findSubstringPositions(str, sub);

    if (positions.empty()) {
        std::cout << "子序列未找到" << std::endl;
    } else {
        std::cout << "子序列在字符串中的位置:" << std::endl;
        for (size_t pos : positions) {
            std::cout << pos << std::endl;
        }
    }

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值