摘要:
这里是12.23随笔 题目留档:给定两个字符串 s 和 t ,它们只包含小写字母。 字符串 t 由字符串 s 随机重排,然后在随机位置添加一个字母。 请找出在 t 中被添加的字母。 示例 1: 输入:s = "abcd", t = "abcde" 输出:"e" 解释:'e' 是那个被添加的字母。 示 阅读全文
摘要:
这里是12.11随笔。 代码留档:#include<stdio.h> include<stdlib.h> include<string.h> int main(){ int i,n,p,x,k; scanf("%d %d",&n,&p); int s=(int )malloc(sizeof(int) 阅读全文
摘要:
这里是12.9随笔。 代码留档:#include <stdio.h> include <stdlib.h> define MAX 1024 typedef struct Hash_{ int HashList[MAX]; int Length; }Hash, *PHash; int main(){ 阅读全文
摘要:
这里是12.6随笔 英语作文留档: Procrastination is a common yet harmful habit. It stealthily creeps into our lives and begins to disrupt our normal routines. It cau 阅读全文