码迷,mamicode.com
首页 >  
搜索关键字:signed char    ( 37702个结果
Tripwire Tutorial: Linux Host Based Intrusion Detection System
Tripwire is a host based Intrusion detection system for Linux. Tripwire monitors Linux system to detect and report any unauthorized changes to the fil ...
分类:系统相关   时间:2021-03-18 14:32:34    阅读次数:0
POJ2255 Tree Recovery 题解 根据前序+中序求二叉树的后序遍历
题目链接:http://poj.org/problem?id=2255 递归经典习题。具体见代码: #include <iostream> #include <cstring> using namespace std; char a[111], b[111]; void dfs(int L1, in ...
分类:其他好文   时间:2021-03-18 14:30:29    阅读次数:0
css3中的动画学习分享
大家好,这里是demo软件园,今天为大家分享的是css3中的动画(animation)。 css3动画: 使元素从一种样式逐渐变化为另一种样式的效果。 动画原理:通过把人物的表情、动作、变化等分解后画成许多动作瞬间的画幅,利用视觉暂留的原理,在一幅画还没有消失前,播放下一幅画。就会给人造成一种流畅的 ...
分类:Web程序   时间:2021-03-18 14:23:55    阅读次数:0
LeetCode_424_替换后的最长字符串
class Solution { public int characterReplacement(String s, int k) { int left =0,right=0; int maxLength = -1; int result = 0; char[] charNums = new cha ...
分类:其他好文   时间:2021-03-17 14:50:06    阅读次数:0
java关键字和标识符
java 关键字 数据类型:boolean、int、long、short、byte、float、double、char、class、interface。 流程控制:if、else、do、while、for、switch、case、default、break、continue、return、try、c ...
分类:编程语言   时间:2021-03-17 14:43:39    阅读次数:0
基于单片机时钟24和12小时制设计
1473下载地址 https://docs.qq.com/doc/DWEpnR2pOWU91b3p4?pub=1&dver=2.1.0 显示格式:hh-mm-ss 可更改的12小时制或24小时制 整点报时功能 闹钟功能 校时功能 #include<reg51.h> char code led_mod ...
分类:其他好文   时间:2021-03-17 14:28:24    阅读次数:0
c++filt使用
c++函数在linux系统下编译之后会变成如下样子 _ZNK4Json5ValueixEPKc 在linux命令行使用c++filter $ c++filt _ZNK4Json5ValueixEPKcJson::Value::operator[](char const*) const 可以得到函数的 ...
分类:编程语言   时间:2021-03-17 14:19:33    阅读次数:0
MySQL基础知识:MySQL Connection和Session
在connection的生命里,会一直有一个user thread(以及user thread对应的THD)陪伴它。 Connection和Session概念 来自Stackoverflow的一个回答: A session is just a result of a successful conne ...
分类:数据库   时间:2021-03-17 14:12:26    阅读次数:0
基于单片机数码管秒表控制系统设计
1485下载地址 https://docs.qq.com/doc/DWEpnR2pOWU91b3p4?pub=1&dver=2.1.0 #include <reg51.h> #include <intrins.h> #define uchar unsigned char #define uint u ...
分类:其他好文   时间:2021-03-17 14:10:52    阅读次数:0
Delphi用数字访问相关的内存(此处数字要为有效地址,且知道该地址的类型)
Delphi XE 仅仅是学习记录 unit 开始 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; typ ...
分类:Windows程序   时间:2021-03-17 14:08:06    阅读次数:0
37702条   上一页 1 ... 28 29 30 31 32 ... 3771 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!