s1
-
实验六
#include <stdio.h> #define N 4 int main() { int x[N]={1,9,8,4}; int i,*p=x; /*数组方式*/…
-
Educational Codeforces Round 130 (Rated for Div. 2) C – awoo's Favorite Problem
看题解发现是我自己读错题了…… 一开始以为可以这样:”abc”->”bac”->”cab”->”cba” 然后就卡了一个多小时,wa无数发 #include<…
-
实验6 指针
task1_1.c 1 #include<stdio.h> 2 #define N 4 3 4 int main() 5 { 6 int x[N]={1,9,8,4};…
-
9.Redis数据库部署和操作
Redis 介绍 NoSQL类型数据库之一,内存运行,效率极高,支持分布式,理论上可以无限拓展数据库,支持各种语言的API,可安装在各种平台 关系型数据库:MySQL、SQLSer…