P3375 [template] KMP string matching

P3375 【Template] KMP string matching Title Description As the title, give two strings S1 and s2, where S2 is a substring of s1, find out all the positions of S2 in s1. In order to reduce the situation of cheating, next output the prefix array next of the substring. (If you don’t know what that means, don’t ask, go to Baidu and learn about the KMP algorithm. Input output format Input format:   The first behavior is a string, that is S1. Second behavior a string, that is S2   Output format:   A number of rows, each containing an integer, indicating the position of S2 in S1. ...

design_model(13)Iterator

1.Iterative mode Provides a way to access elements in an aggregated object sequentially without exposing the internal representation of the object. 2.Example public interface Iterator { public Boolean hashNext(); public Integer next(); } public class IteratorImp { private ArrayList<Integer> list; public IteratorImp(ArrayList<Integer> list) { super(); this.list = list; } public MyIterator iterator() { return new MyIterator(); } class MyIterator implements Iterator { private int size = list.size(); private int i = 0; @Override publ...

JSP gets the value of the radio button component.

jspGets the value of the radio button component. 1.First, write a foreground page with a radio button component. 1 <%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4 <html> 5 <head> 6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 7 <title>Insert title here</title> 8 </head> 9 <body> 10 <form action="request1.jsp" method="post"> 11 Male: < input type= "r...

SSH port changes or SSH can not be reached remotely (especially foreign servers)

Question: Connecting to 149.*.*.*:22…Connection established.To escape to local shell, press ‘Ctrl+Alt+]’. Set the number of visits to /etc/ssh/sshd_config take#UseDNS yesChange to UseDNSnoUsing DNS check, the system tries to check the corresponding domain name through DNS when SSH is an IP.If there is no domain name resolution for this IP in DNS, it will wait until the DNS query expires for the next step, which takes a long time   This parameter seems to be certifying graphics. modifyGSSAPIAuthenticationThe parameter is no,The default is yes  #MaxStartups 10,Input /Max...

JSP gets the value of the multi frame component.

jspGet the value of the multi frame component 1.First, write a foreground page with multiple boxes. 1 <%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4 <html> 5 <head> 6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 7 <title>Insert title here</title> 8 </head> 9 <body> 10 <form action="request2.jsp" method="post"> 11 Favorite color: < br/>12 Red...

Online learning and online learning and online convex optimization – convexity method 4

  Some online prediction problems can be translated into online convex optimization framework. The following two kinds of convexity techniques are introduced:   Some online prediction problems do not seem to fit the online convex optimization framework. For example, in the online classification problem, the prediction domain (predictions domain) or the loss function are not convex. We describe two convex techniques that allow us to use online convex optimization frameworks in other scenarios.   1.Convexification by Randomization   To demonstrate the randomization technique, we...

JSP gets the value of the drop-down component.

jspGets the value of the drop-down component. 1.First, write a foreground page with a drop-down box. 1 <%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4 <html> 5 <head> 6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 7 <title>Insert title here</title> 8 </head> 9 <body> 10 <form action="request3.jsp" method="post"> 11 The country < br/>12 <se...