代码搜索:字符渲染
找到约 10,000 项符合「字符渲染」的源代码
代码结果 10,000
www.eeworm.com/read/271890/10976586
bas modbase64.bas
Attribute VB_Name = "modBase64"
Option Explicit
'Base64编码函数:Base64Encode
'Instr1 编码前字符串
'Outstr1 编码后字符串
Public Function Base64Encode(InStr1 As String, strKey As String) As String
Dim
www.eeworm.com/read/466955/7024842
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/463459/7180472
bat 反序列出文本的每行内容.bat
@echo off
:: 反序列出文本的每行内容
:: 不能处理的字符:
:: 管道符号:|
:: 重定向符号:
:: 连接符号:&
:: 脱字符号:^
:: 其他符号:?、*、)、"
:: code by jm 2006-10-5 CMD@XP
for /f "delims=" %%i in (test.txt) do (
set str=%%i
se
www.eeworm.com/read/458091/7313344
h huffman.h
#ifndef HUFFMAN_H
#define HUFFMAN_H
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define OVERFLOW -2
#define MAX 60//要编码的字符串长度
#define MAXNUM 10000//字符串所对应的编码的最长长度
typedef int
www.eeworm.com/read/456942/7336290
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
www.eeworm.com/read/454932/7381592
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
www.eeworm.com/read/448589/7529296
htm 6.18.htm
document.write("字符串搜索")
var str="This is my first Script code.";
document.write("原字符串为:"+str+"")
document.write("is第一次出现的位置:"+str.indexOf('is')+"");
www.eeworm.com/read/448440/7533330
txt poj_1699.txt
#include
#include
using namespace std;
int statedp[11][1025],n,len[11];
char ch[11][21];
int com[11][11];//表示当i字符串和j字符串连接时,组合串的最小长度
int searchs(int a,int state,int total)//a表示以
www.eeworm.com/read/444277/7614724
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