代码搜索:字符渲染
找到约 10,000 项符合「字符渲染」的源代码
代码结果 10,000
www.eeworm.com/read/241345/13153781
c main6-6.c
/* main6-6.c 检验bo6-6.c的主程序 */
#define CHAR /* 字符型 */
/*#define INT /* 整型(二者选一) */
#include"c1.h"
#ifdef CHAR
typedef char TElemType;
TElemType Nil=' '; /* 字符型以空格符为空 */
#endif
#ifd
www.eeworm.com/read/136685/13366094
m exm030132_1.m
S1=char('This string array','has two rows.')
S2=str2mat('这','字符','串数组','由4行组成')
S3=strvcat('这','字符','串数组',' ','由4行组成')%“空串”会产生一个空格行
size(S3)
www.eeworm.com/read/320084/13433100
cpp kmp.cpp
//字符串匹配算法
//KMP算法,区分大小写
#include
#include
#define pat_length 34 //模式字符串长度
int compare(unsigned char *t, unsigned char *p);
int next(int j); //分析已匹配真子串长
www.eeworm.com/read/319335/13453540
m exm030132_1.m
S1=char('This string array','has two rows.')
S2=str2mat('这','字符','串数组','由4行组成')
S3=strvcat('这','字符','串数组',' ','由4行组成')%“空串”会产生一个空格行
size(S3)
www.eeworm.com/read/318973/13465067
c main6-6.c
/* main6-6.c 检验bo6-6.c的主程序 */
#define CHAR /* 字符型 */
/*#define INT /* 整型(二者选一) */
#include"c1.h"
#ifdef CHAR
typedef char TElemType;
TElemType Nil=' '; /* 字符型以空格符为空 */
#endif
#ifd
www.eeworm.com/read/316419/13523173
c main6-6.c
/* main6-6.c 检验bo6-6.c的主程序 */
#define CHAR /* 字符型 */
/*#define INT /* 整型(二者选一) */
#include"c1.h"
#ifdef CHAR
typedef char TElemType;
TElemType Nil=' '; /* 字符型以空格符为空 */
#endif
#ifd
www.eeworm.com/read/315789/13536661
java simpleinput.java
// SimpleInput.java: 该类包含了几个方法,可以从键盘读取一个整数、浮点数和字符串
import java.io.*;
public class SimpleInput
{
public static String readString( ) // 从键盘读取一个字符串
{
BufferedReader br
= new
www.eeworm.com/read/310155/13657532
c main.c
#define MAIN_C
#include "includes.h"
/***************************/
/*串口通信*/
/*晶振为4MHz*/
/*波特率为9600bps*/
/*发送采用查询方式,中断采用接收方式*/
/*当收到的字符达到所定义的长度时,则在LCD上显示收到的字符*/
/***************************/
#
www.eeworm.com/read/308708/13695059
cpp main6-6.cpp
// main6-6.cpp 检验bo6-6.cpp的主程序
#define CHAR // 字符型
//#define INT // 整型(二者选一)
#include"c1.h"
#ifdef CHAR
typedef char TElemType;
TElemType Nil=' '; // 字符型以空格符为空
#endif
#ifdef INT