代码搜索:字符渲染
找到约 10,000 项符合「字符渲染」的源代码
代码结果 10,000
www.eeworm.com/read/182744/9193090
java forsearch.java
import java.io.*;
class ForSearch
{ public int row=0,len1=0,len2=0,flag=0,i; //定义行数、存入的字符串个数、标志位、循环变量
public String[] word=new String[1000000]; //定义字符串数组
public String[] WordList=new String
www.eeworm.com/read/181815/9236233
cpp algo7-7.cpp
// algo7-7.cpp 实现算法7.16的程序
#define MAX_NAME 5 // 顶点字符串的最大长度+1
#define MAX_INFO 20 // 相关信息字符串的最大长度+1
typedef int VRType;
typedef char VertexType[MAX_NAME];
typedef char InfoType;
#include"
www.eeworm.com/read/181334/9258936
cpp 哈夫曼编码.cpp
#include
#include"stdio.h"
#include"stdlib.h"
#include"string.h"
char ch[27];//暂时使用有20个字符的文件,可以增加
int frequency[26];//各个字符的使用频率
int numch[27]={0};
typedef char ElemType;
char cflag;
www.eeworm.com/read/372391/9511614
cpp algo7-7.cpp
// algo7-7.cpp 实现算法7.16的程序
#define MAX_NAME 5 // 顶点字符串的最大长度+1
#define MAX_INFO 20 // 相关信息字符串的最大长度+1
typedef int VRType;
typedef char VertexType[MAX_NAME];
typedef char InfoType;
#include"
www.eeworm.com/read/370885/9578404
c 语义分析-main.c
#include "stdio.h"
#include "string.h"
#include "malloc.h"
#include "scaner.h"
#include "stack.h" //利用栈将10进制数转化为字符型,存入字符数组中。
int kk=0; //输出错误的标志 错误时,kk=1;
int ll=0; //控制临
www.eeworm.com/read/366495/9811509
cpp algo7-7.cpp
// algo7-7.cpp 实现算法7.16的程序
#define MAX_NAME 5 // 顶点字符串的最大长度+1
#define MAX_INFO 20 // 相关信息字符串的最大长度+1
typedef int VRType;
typedef char VertexType[MAX_NAME];
typedef char InfoType;
#include"
www.eeworm.com/read/416348/10002739
cpp ep5_11.cpp
/* 5.11 完善自定义字符串类mystring,函数包括:构造函数、拷贝构造函数、析构函数,
并重载运算符[],=(分别用mystring和C字符串拷贝),+(strcat),+=,>,==(strcmp)。
*/
#include
using namespace std;
const int n=256;
class mystring{
char st
www.eeworm.com/read/162887/10261517
m main.m
function f = main(filename)
% save initial_data f;
% load initial_data;
% time1=fix(clock);
fid = fopen(filename,'r');%读文件
s = fread(fid,inf,'uchar=>uchar');%把文件中的字符按字节顺序存储在字符串列向量s中
f = s(1:10
www.eeworm.com/read/425971/10299283
cpp algo7-7.cpp
// algo7-7.cpp 实现算法7.16的程序
#define MAX_NAME 5 // 顶点字符串的最大长度+1
#define MAX_INFO 20 // 相关信息字符串的最大长度+1
typedef int VRType;
typedef char VertexType[MAX_NAME];
typedef char InfoType;
#include"
www.eeworm.com/read/280313/10340519
java drawstringcolortest2.java
/**
* 在面板中绘制字符串,设置字符串的不同颜色与面板的背景色
*/
import javax.swing.JFrame;
import java.awt.Toolkit;
import java.awt.Image;
import java.awt.Dimension;
import java.awt.Container;
import java.awt.Graphi