This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
nitrogen /home/kaleo/images/wallpapers/ && python change_tint2_color.py && tint2restart & |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
push | |
*/ | |
void push(STACK_TYPE value) | |
{ | |
assert(!isFull()); | |
topElement += 1; | |
arry[topElement] = value; | |
} | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#define QueueType int | |
#define MAX 10 | |
/*******************/ | |
/* | |
队列的结构 | |
*/ | |
typedef struct |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//***********顺序表实现的电话簿程序*************************// | |
/* | |
*本程序为练习顺序表所写,仅实现了最基本的几个功能:添加,删除,查找联系人. | |
* 很多细节并未实现,如检验姓名,和手机号码是否合法,对重复姓名联系人的处理,按时间先后排序,按字母先后排序等. | |
* 程旭 | |
* [email protected] | |
*/ | |
#include<stdio.h> | |
#include<string.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//*******链表的操作**************// | |
//Test | |
/* | |
*本程序为练习链表的操作所写,仅实现了最基本的几个功能:添加,删除,查找联系人. | |
* 很多细节并未实现,如检验姓名,和手机号码是否合法,对重复姓名联系人的处理,按时间先后排序,按字母先后排序等. | |
* 程旭 | |
* [email protected] | |
*/ | |
#include<stdio.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<reg52.h> | |
#include<stdio.h> | |
#define uchar unsigned char | |
#define uint unsigned int | |
sbit Trig = P1^5; | |
sbit Echo = P3^2; | |
NewerOlder