#tc

Object类中getClass()

Object类中包含一个方法名叫getClass,利用这个方法就可以获得一个实例的类型类。类型类指的是代表一个类型的类,因为一切皆是对象,类型也不例外,在Java使用类型类来表示一个类型。所有的类型类都是Class类的实例。...
代码星球 ·2021-01-10

test、exec、match区别

test、exec、match的简单区别1、testtest返回Boolean,查找对应的字符串中是否存在模式。varstr="1a1b1c";varreg=newRegExp("1.","");alert(reg.test(str));//true2、execexec查找并返回当前的匹配结果,并以数组的形式返回。va...
代码星球 ·2021-01-10

matches()方法

java.lang包中的String类和java.util.regex包中的Pattern,Matcher类中都有matches()方法,都与正则表达式有关。下面我分别举例:(字符串:"abc",正则表达式:"[a-z]{3}")String类的方法:booleanb="abc".matches("[a-z]{3}"S...
代码星球 ·2021-01-10

Pattern()和Matcher() 用法

1.简介: java.util.regex是一个用正则表达式所订制的模式来对字符串进行匹配工作的类库包。 它包括两个类:Pattern和Matcher。Pattern:一个Pattern是一个正则表达式经编译后的表现模式。 Matcher:一个Matcher对象是一个状态机器,它依据Pat...
代码星球 ·2021-01-10

正则表达式中Pattern类、Matcher类和matches()方法简析

 1.简介: java.util.regex是一个用正则表达式所订制的模式来对字符串进行匹配工作的类库包。 它包括两个类:Pattern和Matcher。Pattern:一个Pattern是一个正则表达式经编译后的表现模式。 Matcher:一个Matcher对象是一个状态机器,...

leetcode 动态规划类型题

1,Triangle1intmininumTotal(vector<vector<int>>&triangle){2for(inti=triangle.size()-2;i>=0;--i){3for(intj=0;j<i+1;++j){4//从下往上依次保存当前路径的最小值,...
代码星球 ·2021-01-09

leetcode 树类型题

树的测试框架:1//leetcodeTree.cpp:定义控制台应用程序的入口点。2//34#include"stdafx.h"5#include<iostream>6#include<queue>7#include<stack>8#include<vector>910u...
代码星球 ·2021-01-09

leetcode 栈和队列类型题

1,ValidParentheses1boolisVaild1(string&s){//直接列举,不易扩展2stack<char>stk;3for(inti=0;i<s.length();++i){4if(stk.empty())5stk.push(s[i]);6else{7chartop=s...
代码星球 ·2021-01-09

leetcode 字符串类型题

1,VaildPalindrome1boolisPalindrome(string&s){2transform(s.begin(),s.end(),s.begin(),tolower);//把字符全部转换成小写3intleft=0;4intright=s.length()-1;5while(left<ri...
代码星球 ·2021-01-09

leetcode 链表类型题总结

链表测试框架示例:1//leetcodeList.cpp:定义控制台应用程序的入口点。vs2013测试通过2//34#include"stdafx.h"5#include<Windows.h>6#include<iostream>78usingnamespacestd;910structList...
代码星球 ·2021-01-09

leetcode 数组类型题总结

1,removeDuplicates(I)1intremoveDuplicatesI(vector<int>&nums){//重新组织数组,同removeDuplicates2IV2intindex=0;3for(inti=0;i<nums.size();++i){4if(i>0&...
代码星球 ·2021-01-09

leetcode 数组类型题

1//ConsoleApplication1.cpp:定义控制台应用程序的入口点。2//34#include"stdafx.h"5#include<Windows.h>6#include<iostream>7#include<vector>8#include<string>...
代码星球 ·2021-01-09

leetcode 中等题(2)

50. Pow(x,n)(中等)doublemyPow(doublex,intn){doubleans=1;unsignedlonglongp;if(n<0){p=-n;x=1/x;}else{p=n;}while(p){if(p&1)ans*=x;x*=x;p>>=1;}retur...
代码星球 ·2021-01-09

leetcode 中等题(1)

 2. AddTwoNumbers(中等)/***Definitionforsingly-linkedlist.*structListNode{*intval;*ListNode*next;*ListNode(intx):val(x),next(NULL){}*};*/classSolution{p...
代码星球 ·2021-01-09

详解php中switch你可能不知道的事

switch的常规用法是传递一个参数然后逐一跟case对比;switch (variable) {    case 'value':        // cod...
首页上一页...6768697071...下一页尾页