Skip to content

Instantly share code, notes, and snippets.

View Alafun's full-sized avatar
🧐
Thinking...

阿拉凡 Alafun

🧐
Thinking...
View GitHub Profile
@Alafun
Alafun / sequence_list.cpp
Last active January 23, 2022 15:08
顺序表C++实现
/******************
* To DO:
* - [x] 插入
* - [x] 打印插入结果
* - [x] 删除
* - [x] 打印删除结果
* - [x] 查找
* - [x] 打印查找结果
******************/
#include<stdio.h>
#include<stdio.h>
int main(){
struct stud{
int stud_id;
char stud_name[10];
char stud_gender;
};
struct stud istud;
scanf("%d%s %c",&istud.stud_id,istud.stud_name,&istud.stud_gender);
@Alafun
Alafun / problem10.c
Created January 20, 2022 03:39
To help me understand the way of using string.h library
#include<stdio.h>
#include<string.h>
int main()
{
char c[20];
char d[20];
gets(c);
int i=0;
int j;
@Alafun
Alafun / make-kaggle-tabable.py
Last active December 6, 2021 02:15
make kaggle notebook autocompletable by adding the line.
%config Completer.use_jedi = False