The power of bees
1. "Eat". Yes, eating can also improve memory. Moreover, according to scientists, eating foods rich in phospholipids can supplement the brain's memory needs, such as fish head, seeds or nuclei of walnut, peanut and other plants, as well as bee pollen Royal jelly and other health procts also have some peculiar effects. But this method is not the most effective< (1) speed reading method (also known as whole brain speed reading memory): speed reading method is a memory training based on fast reading. In fact, speed reading method is a memory training based on fast reading, The two are carried out at the same time and are mutually complementary. Don't think that if the reading speed is fast, the memory will be poor, because what we rely on here is not the logical memory of the left brain consciousness, but the image memory of the right brain subconscious, and the latter is 1 million times stronger than the former. Through speed reading memory training friends know that the faster the memory, the better, detailed learning information you can go to the "elite special speed reading memory training website" to learn, download the software for trial
(2) image method (also known as associative memory): image method also uses the image memory function of the right brain to play the imagination of the right brain to connect the relationship between different images, so as to turn it into a memorable story to realize super large capacity memory. As for associative memory, "elite special speed reading memory training" also has training, This method is used by many memory masters
(3) mind mapping (also called mind mapping): mind mapping is a great invention. It can not only systematize and visualize the data in your brain in memory, but also help you think, analyze problems and plan as a whole
(4) if you are in the exam or are busy preparing for the exam, I suggest you learn elite special, which can improve your memory and learning efficiency. Elite English speed reading is also recognized by our association. I hope you can make progress as soon as possible
I hope my answer can help you. Please accept it.
We can use the average bee division method, that is to say, half of the nests and middle bees in the bee calculation can be moved to another new hive
However, for the hives with excessive bee fever, the method of unequal bee distribution should be adopted. The specific method is to move the strong heat bee and the nest spleen in the hive to the new hive, cut off all the king platform in the old hive, and carry out artificial breeding In the first five or six days, the farmers should pay attention to the feed supplement in the bee colony, increase some pollen feeding in time, and observe whether the newly emerged queens lay eggs and the quality of their eggs. Once unqualified queens are found, they should be replaced as soon as possible{rrrrrrr}
extended data:
precautions:
1. The breeding of Chinese queen bee does not need to be carried out every year. The biggest purpose of the new queen bee is to make the colony stronger, because the new queen bee has great vitality and high oviposition rate. But there are some excellent varieties of queen bee, in the second year, the momentum will not weaken, and the newly bred queen bee can not exceed, so we need to pay attention to observe whether the colony needs to change the queen
It should be noted that the bee farm should not exist in the vicinity of dashantang or reservoir, but should be located in a place away from the wind and facing the sun If there are too many natural enemies of bees, such as swallows and wasps, there will be mating and losing the queen, which will cause great losses to their own colonies If the bee farm is just established, it is necessary to reorganize the bee colony first, and then carry out artificial breeding. Because in the newly established bee farms, most of the Chinese bees come from different places and have no spirit of unity. If they directly breed the queen without changing the spleen, it is difficult to cultivate a strong bee colony, and the phenomenon of illness and escape often occursthere are all the hidden lines in the tutorial. Please see for yourself
Disease resistance refers to the susceptibility and resistance of bee colony to various diseases. The resistance of bee colony to various diseases is usually evaluated by observing the infection and resistance of bee colony to various diseases. If possible, the method of inoculating pathogen can be used for investigation. Because there are many kinds of bee diseases, the resistance to a certain disease should be noted when examining the resistance. It is generally divided into three levels:
strong: it is not infected with the common diseases in feeding areas; Or after infection, the condition is very light, without treatment can be self-healing
medium: it is easy to cure the common diseases in feeding areas after infection
weak: it is easy to be infected with common diseases in feeding areas, and the incidence is serious, or it is more serious for non common diseases
如果user1和user4有关联,user4和user3有关联,user3和user2有关联,user2和user5有关联,那是不是表示user1和user2,user3,user4,user5都有关联
private static HashMap<String,User> userHashMap = new HashMap<String, User>();
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
System.out.println("请输入N(表示有N条登录信息)");
int N;
N = sc.nextInt();
sc.nextLine();
System.out.println("请输入" + N +"条登录信息格式xxx,yyyy");
int index = 0;
while (index < N)
{
String str = sc.nextLine();
if (str.contains(","))
{
String[] details = str.split(",");
if (details.length == 2)
{
if (userHashMap.containsKey(details[0]))
{
User user = userHashMap.get(details[0]);
user.add_Device(details[1]);
}
else
{
User user = new User(details[0]);
user.add_Device(details[1]);
userHashMap.put(details[0],user);
}
index ++;
}
else
{
System.out.println("格式错误");
}
}
else
{
System.out.println("格式错误");
}
}
System.out.println("请输入要查询的用户");
String userName = sc.nextLine();
Set<String> devices = userHashMap.get(userName).getDevices();
Set<String> associated_user = new HashSet<String>();
associated_user.add(userName);
System.out.println(find(devices,associated_user));
System.out.println(userHashMap);
}
public static Set<String> find(Set<String> devices,Set<String> associated_users)
{
for (String device : devices)
{
Iterator it = userHashMap.keySet().iterator();
while (it.hasNext())
{
String key = (String) it.next();
for (String str : userHashMap.get(key).getDevices())
{
if (str.equals(device) && !associated_users.contains(key))
{
associated_users.add(key);
associated_users.addAll(find(userHashMap.get(key).getDevices(),associated_users));
}
}
}
}
return associated_users;
}
static class User
{
private String name;
private Set<String> devices;
public User(String name)
{
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Set<String> getDevices() {
return devices;
}
public void setDevices(Set<String> devices) {
this.devices = devices;
}
public void add_Device(String device)
{
if (devices != null)
{
devices.add(device);
}
else
{
devices = new HashSet<String>();
devices.add(device);
}
}
public String toString() {
return "User{" +
"name='" + name + ''' +
", devices=" + devices +
'}';
}
}

