- 博客(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
52
原创 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
1194
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
880
原创 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
115
原创 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
161
原创 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
1635
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人