码迷,mamicode.com
首页 >  
搜索关键字:string substr    ( 97469个结果
LCS & LCIS
LCS 操作对象:两个长度不一定相等的字符串。 例题 string s, t; int f[maxn][maxn]; int main() { cin >> s >> t; int ls = s.length(), lt = t.length(); for (int i = 1; i <= ls; ...
分类:其他好文   时间:2021-06-29 15:57:12    阅读次数:0
2.面向对象基础-03Java数组
一、数组的创建和初始化 (一)创建数组: import java.util.*; import java.io.*; public class Main { public static void main(String[] args) { Scanner in = new Scanner(Syste ...
分类:编程语言   时间:2021-06-29 15:56:03    阅读次数:0
数据类型学习
public class 数据类型学习 { public static void main(String[] args) { int i = 10; int i2 = 010;//8进制0 int i3 = 0x10;//16进制0x //long i4 = 40L; //Long类型要在数字后面加 ...
分类:其他好文   时间:2021-06-29 15:49:06    阅读次数:0
R语言中批量加载函数
1、 rm(list = ls()) dir() for (i in list.files(pattern=".r$")) { source(i) } 2、 rm(list = ls()) dir() for (i in dir()) { if(substr(i,nchar(i)-1,nchar(i ...
分类:编程语言   时间:2021-06-29 15:38:29    阅读次数:0
国内贩卖管理表
Public rnTem As Range Public stKehu As String Public temDingdan As String Public Const rowDingdan As Integer = 22 Public Sub ShengchengTongjiJine() Ap ...
分类:其他好文   时间:2021-06-29 15:20:19    阅读次数:0
c++之读取文件夹中的文件
前言 做对应于播放rosbag包的离线版本, 读取文件夹中image和pcd来处理, 因此需要读取文件夹下的图像文件, 然后根据图像的名称来读取pcd. 代码 #include <iostream> #include <string> #include <vector> #include <fstr ...
分类:编程语言   时间:2021-06-28 21:09:42    阅读次数:0
WPF依赖属性-依赖属性介绍
WPF的设计理念是:数据驱动,UI与逻辑松耦合 一、传统的CLR属性 public class Person { private string _Name; public string Name { get { return _Name; } set { _Name = value; } } } 二 ...
分类:Windows程序   时间:2021-06-28 21:03:52    阅读次数:0
华为机试题 成绩排名
简介 对cmp的理解能力 常规题 code #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; struct Student{ int idx; int n ...
分类:其他好文   时间:2021-06-28 21:01:31    阅读次数:0
map普通遍历+java8的Lambda表达式
一:普通方式、 1、keySet(): Map<String, Object> map = new HashMap<>(); map.put("name", "张三"); map.put("age", 20); for (String key : map.keySet()) { String val ...
分类:编程语言   时间:2021-06-28 20:40:37    阅读次数:0
【C++ Primer 第16章】重载与模板
编写重载模板 1 #include <iostream> 2 #include <sstream> 3 #include <string> 4 using namespace std; 5 6 template <typename T> 7 string debug_rep(const T &t) ...
分类:编程语言   时间:2021-06-28 20:25:45    阅读次数:0
97469条   上一页 1 ... 6 7 8 9 10 ... 9747 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!