- 博客(6)
- 收藏
- 关注
原创 【无标题】
test@TOChive sql我们对Markdown编辑器进行了一些功能拓展与语法支持,除了标准的Markdown编辑器功能,我们增加了如下几点新功能,帮助你用它写博客:撤销:Ctrl/Command + Z 重做:Ctrl/Command + Y 加粗:Ctrl/Command + B 斜体:Ctrl/Command + I 标题:Ctrl/Command + Shift + H 无序列表:Ctrl/Command + Shift + U 有序列表:Ctrl/Command + Shift + O 检查
2023-08-02 15:45:33
82
原创 Rosalind-002:DNA转录为RNA(Transcribing DNA into RNA)
题目: DNA转录为RNA(Transcribing DNA into RNA) Given: A DNA string tt, which corresponding to a coding strand, having length at most 1000 nt. 所给:一条被命名为tt的DNA编码链,长度至少为1000个碱基。 Return: The transcribed RNA string of tt. 需得:由tt经转录得到的RNA链。 测试数据 GATGGAACTTGACTACGTAAAT
2020-11-11 23:51:42
1315
1
原创 Rosalind-001:统计核苷酸数目(Counting DNA Nucleotides)
题目: 统计核苷酸数目(Counting DNA Nucleotides) Given: A DNA string ss of length at most 1000 nt. 所给:一条被命名为ss的DNA链,长度至少为1000个碱基。 Return: Four integers (separated by spaces) counting the respective number of times that the symbols ‘A’, ‘C’, ‘G’, and ‘T’ occur in ss.
2020-11-10 21:26:47
971
原创 Maven的安装与配置
今天要安装配置maven 下载 在apache官网下载maven的bin 安装 找一个路径保存 配置环境变量:MAVEN_HOME和PATH 配置系统环境变量 在path中添加%MAVEN_HOME%\bin 配置JDK 安装测试 打开cmd输入mvn -v,测试是否安装成功 配置本地Maven仓库 在idea中配置maven 创建我的第一个Maven工程 ...
2020-09-12 18:46:51
148
原创 C语言基础编程——文件
文件基本操作 打开文件 1.1 路径 1.1.1 相对路径: 相对文件下的路径 1.1.2 绝对路径(计算机的总path) 1.2打开方式 r:只读 w:只写 如果文件不存在:创建文件,如果存在:清空文件 a:追加 在原文件的末尾接着写 +:可读可写 b+:二进制 r+ w+ a+ rb+ wb+ ab+ rb wb ab 关闭文件 fclose(文件指针); #include<stdio.h> #include<stdlib.h> int mai
2020-05-26 00:38:04
193
原创 C语言基础编程——链表(一)
一、静态链表 #include<stdio.h> #include<stdlib.h> typedef struct node { int data;///数据域 struct node* next;///指针域 }; int main() { system("color 7D");//背景颜色 struct node node1={1,NULL}; struct node node2={2,NULL}; struct node n
2020-05-25 04:39:40
1841
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅