文章列表
精品文章
黑客入门系列一 劫持(Hook)库函数
摘要:一、前言: 相信很多学习计算机的同学,都有一个黑客梦,这次就给大家稍微展示一些“拙劣”的黑客技巧,仅限于linux环境。因为工作以后,90%的人都是在linux系统从事开发工作的。二、测试环境:……
循环双链表的插入和删除操作
摘要:```c
#include
#include
#include
typedef struct student
{
char name[20];
int score;……
[编程入门]数字的处理与判断-题解(c语言)
摘要:运用简单的方法,比较直观且清晰,但定义的变量有点的多#include<stdio.h>jint main(){int a1,b1,c1,d1,e1,sum;int a,b,c,d,e,num;num>……
题目 1051: [编程入门]结构体之成绩统计2
摘要:兄弟们,大一大二落下的太多了,感觉现在一下子,要接触c,c++,java,python,c#,还有前端其中 c练的最多(但都是皮毛)c++ (今年暑假自学了,感觉和java好像,练了一部分题)java……
leetcode——机器人
摘要:```c
#include
#include
int main()
{
int start_x=0,start_y=0;
int end_x=0,end_y=0;
int ob……
delete the repeated number in the chain number array
摘要:```c
//delete the repeated number in the chain number array
#include
#include
typedef int Elem……
删除链表中在[x,y]中的元素
摘要:```c
#include
void fun(SqList*L,ElemType x,ElemType y)
{
SqList *p1,*p2;
int temp;
……