了解list

news2024/11/26 18:53:07

list

  • 1. list的介绍及使用
    • 1.1 list的介绍
    • 1.2 list的使用
      • 1.2.1 list的构造
      • 1.2.2 list iterator的使用
      • 1.2.3 list capacity
      • 1.2.4 list element access
      • 1.2.5 list modifiers
        • 1. resize
        • 2. push_back/pop_back/push_front/pop_front
        • 3. insert /erase
        • 4. swap/clear
      • 1.2.6 list operations
        • 1. splice
        • 2.remove_if
        • 3.sort/reverse
      • 1.2.7 list的迭代器失效
  • 2. list的深度剖析及模拟实现
    • 2.1 list_node
    • 2.2 __list_iterator
    • 2.3 list
    • 2.3 __list_const_iterator

在这里插入图片描述

1. list的介绍及使用

1.1 list的介绍

C++中的list是一个双向链表,它是一个STL容器,可以用来存储任何类型的数据。list容器中的元素可以在任何位置插入或删除,而不会影响其他元素。list容器中的元素按照它们在容器中出现的顺序进行排序。可以使用STL算法对list容器进行排序、查找和操作。可以使用迭代器访问list容器中的元素。

1.2 list的使用

list中的接口比较多,此处类似,只需要掌握如何正确的使用,然后再去深入研究背后的原理,已达到可扩展的能力。以下为list中一些常见的重要接口。

1.2.1 list的构造

default (1) explicit list ()); //构造空的list
fill (2) explicit list (size_type n, const value_type& val = value_type(), const allocator_type& alloc = allocator_type()); //构造的list中包含n个值为val的元素
range (3) template < class InputIterator >
list (InputIterator first, InputIterator last, const allocator_type & alloc = allocator_type()); //用[first, last)区间中的元素构造list
copy (4) list (const list& x); //拷贝构造函数

1.2.2 list iterator的使用

在这里插入图片描述
【注意】

  1. begin与end为正向迭代器,对迭代器执行++操作,迭代器向后移动
  2. rbegin(end)与rend(begin)为反向迭代器,对迭代器执行++操作,迭代器向前移动
    list迭代器是一个双向迭代器,list的迭代器支持前置和后置自增运算符,以及前置和后置自减运算符。list的迭代器还支持解引用运算符,可以返回指向当前元素的引用。此外,list的迭代器还支持比较运算符,可以比较两个迭代器是否相等。
#include <iostream>
using namespace std;
#include <list>

int main()
{
    list<int> l1;                         // 构造空的l1
    list<int> l2(4, 100);                 // l2中放4个值为100的元素
    list<int> l3(l2.begin(), l2.end());  // 用l2的[begin(), end())左闭右开的区间构造l3
    list<int> l4(l3);                    // 用l3拷贝构造l4

    // 以数组为迭代器区间构造l5
    int array[] = { 5,6,7,8,9 };
    list<int> l5(array, array + sizeof(array) / sizeof(int));

    // 列表格式初始化C++11
    list<int> l6{ 1,2,3,4,5 };

    // 用迭代器方式打印l5中的元素
    list<int>::iterator it = l5.begin();
    while (it != l5.end())
    {
        cout << *it << " ";
        ++it;
    }
    cout << endl;

	return 0;
}

在这里插入图片描述

#include <iostream>
using namespace std;
#include <list>

int main()
{
	list<int> lt = { 1,2,3,4,5 };
	list<int>::iterator it = lt.begin();
	while (it != lt.end())
	{
		cout << *it << ' ';
		(*it) *= 2;
		++it;
	}
	cout << endl;
	//反向迭代器
	list<int>::reverse_iterator rit = lt.rbegin();
	while (rit != lt.rend())
	{
		cout << *rit << ' ';
		++rit;
	}
	cout << endl;
	return 0;
}

在这里插入图片描述

1.2.3 list capacity

在这里插入图片描述
list没有容量概念,但是有可以容纳的最大元素数。

#include <iostream>
using namespace std;
#include <list>

int main()
{
	list<int> l1;
	list<int> l2 = { 1,2,3,4,5 };
	cout << "l1.empty:" << l1.empty() << endl;
	cout << "l1.size:" << l1.size() << endl;
	cout << "l1.max_size:" << l1.max_size() << endl;
	cout << "l2.empty:" << l2.empty() << endl;
	cout << "l2.size:" << l2.size() << endl;
	cout << "l2.max_size:" << l2.max_size() << endl;
	return 0;
}

在这里插入图片描述

1.2.4 list element access

在这里插入图片描述
front :返回list的第一个节点中值的引用
back :返回list的最后一个节点中值的引用

int main()
{
	list<int> mylist = { 77,12,23,22 };
	// now front equals 77, and back 22
	mylist.front() -= mylist.back();
	cout << "mylist.front() is now " << mylist.front() << '\n';

	return 0;
}

在这里插入图片描述

1.2.5 list modifiers

在这里插入图片描述

1. resize

int main()
{
    list<int> mylist;
    // set some initial content:
    for (int i = 1; i < 10; ++i) 
        mylist.push_back(i);
    mylist.resize(5);
    mylist.resize(8, 100);
    mylist.resize(12);

    cout << "mylist contains:";
    for (list<int>::iterator it = mylist.begin(); it != mylist.end(); ++it)
        cout << ' ' << *it;
    cout << endl;

    return 0;
}

在这里插入图片描述

2. push_back/pop_back/push_front/pop_front

int main()
{
    int array[] = { 1, 2, 3 };
    list<int> L(array, array + sizeof(array) / sizeof(array[0]));

    // 在list的尾部插入4,头部插入0
    L.push_back(4);
    L.push_front(0);
    list<int>::iterator it = L.begin();
    while (it != L.end())
    {
        cout << *it << ' ';
        ++it;
    }
    cout << endl;

    // 删除list尾部节点和头部节点
    L.pop_back();
    L.pop_front();
    it = L.begin();
    while (it != L.end())
    {
        cout << *it << ' ';
        ++it;
    }
    cout << endl;
}

在这里插入图片描述

3. insert /erase

int main()
{
    int array1[] = { 1, 2, 3 };
    list<int> L(array1, array1 + sizeof(array1) / sizeof(array1[0]));
    // 获取链表中第二个节点
    auto pos = ++L.begin();
    cout << *pos << endl;
    // 在pos前插入值为4的元素
    L.insert(pos, 4);
    list<int>::iterator it = L.begin();
    while (it != L.end())
    {
        cout << *it << ' ';
        ++it;
    }
    cout << endl;
    // 在pos前插入5个值为5的元素
    L.insert(pos, 5, 5);
    it = L.begin();
    while (it != L.end())
    {
        cout << *it << ' ';
        ++it;
    }
    cout << endl;
    // 删除pos位置上的元素
    L.erase(pos);
    it = L.begin();
    while (it != L.end())
    {
        cout << *it << ' ';
        ++it;
    }
    cout << endl;
    // 删除list中[begin, end)区间中的元素,即删除list中的所有元素
    L.erase(L.begin(), L.end());
    it = L.begin();
    while (it != L.end())
    {
        cout << *it << ' ';
        ++it;
    }
    cout << endl;
	return 0;
}

在这里插入图片描述

4. swap/clear

int main()
{
    // 用数组来构造list
    int array1[] = { 1, 2, 3 };
    list<int> l1(array1, array1 + sizeof(array1) / sizeof(array1[0]));
    list<int>::iterator it = l1.begin();
    cout << "l1:";
    while (it != l1.end())
    {
        cout << *it << ' ';
        ++it;
    }
    cout << endl;
    // 交换l1和l2中的元素
    list<int> l2;
    l1.swap(l2);
    it = l1.begin();
    cout << "l1:";
    while (it != l1.end())
    {
        cout << *it << ' ';
        ++it;
    }
    cout << endl;
    cout << "l2:";
    it = l2.begin();
    while (it != l2.end())
    {
        cout << *it << ' ';
        ++it;
    }
    cout << endl;
    // 将l2中的元素清空
    l2.clear();
    cout << "l2.size:" << l2.size() << endl;
}

在这里插入图片描述

1.2.6 list operations

在这里插入图片描述

1. splice

splice()函数用于将元素从一个列表传输到另一个列表。它有三个重载版本:

  1. list1.splice(position, list2):将list2中的所有元素剪贴到list1的position位置;
  2. list1.splice(position, list2, iter):将list2中某个位置的迭代器iter指向的元素剪贴到list1中的position位置;
  3. list1.splice(position, list2, first, last):将list2中[first,last)区间内的元素剪贴到list1中的position位置。
int main()
{
	//list1.splice(position, list2, first, last):将list2中[first, last)区间内的元素剪贴到list1中的position位置
	list<int> l1 = { 1,2,3,4,5 };
	list<int> l2 = { 6,7,8,9,10 };
	list<int>::iterator position = l1.begin(); ++position; //2
	list<int>::iterator first = l2.begin(); ++first; //7
	list<int>::iterator last = l2.end(); --last; //10
	l1.splice(position, l2, first, last);
	list<int>::iterator it = l1.begin();
	while (it != l1.end())
	{
		cout << *it << ' ';
		++it;
	}
	cout << endl;
	return 0;
}

在这里插入图片描述

2.remove_if

remove_if()用于从范围[first,last)中删除满足特定条件的所有元素,并返回新范围的超尾迭代器。已删除的元素不会从容器中物理删除,它们的内存仍然分配。该函数仅在删除后返回容器的新结尾迭代器。

int main() 
{
    list<int> v{ 1, 2, 3, 4, 5 };
    v.erase(remove_if(v.begin(), v.end(), [](int i) {return i % 2 == 0; }), v.end());
    for (auto i : v)
    {
        cout << i << " ";
    }
    cout << endl;
    return 0;
}

在这里插入图片描述

在此示例中,我们有一个包含1到5的整数list。我们使用remove_if()从向量中删除所有偶数。lambda函数[](int i){return i % 2 == 0;}检查整数是否为偶数。该函数返回一个迭代器,指向删除后向量的新结尾。然后我们使用erase()将所有元素从返回的迭代器到向量末尾删除。

3.sort/reverse

int main()
{
	list<int> l = { 3,5,2,1,4 };
	l.sort(); //默认升序
	list<int>::iterator it = l.begin();
	while (it != l.end())
	{
		cout << *it << ' ';
		++it;
	}
	cout << endl;
	l.sort(greater<int>());//降序
	it = l.begin();
	while (it != l.end())
	{
		cout << *it << ' ';
		++it;
	}
	cout << endl;
	l.reverse();//翻转链表
	it = l.begin();
	while (it != l.end())
	{
		cout << *it << ' ';
		++it;
	}
	cout << endl;
}

在这里插入图片描述

1.2.7 list的迭代器失效

在C++中,当使用std::list容器的迭代器时,可能会遇到迭代器失效的问题。迭代器失效是指,当修改容器时,指向容器元素的迭代器可能会失效。以下是一些导致迭代器失效的常见情况:
当使用erase()方法删除元素时,指向被删除元素的迭代器将失效。
当使用insert()方法插入元素时,指向插入位置之后的所有元素的迭代器将失效。
当容器扩容时,所有指向容器元素的迭代器都将失效。

void TestIterator1()
{
	list<int> l = { 1,2,3,4,5,6 };
	list<int>::iterator it = l.begin();
	while (it != l.end())
	{
		l.erase(it);
		++it;
	}
}
void TestIterator2()
{
	list<int> l = { 1,2,3,4,5,6 };
	list<int>::iterator it = l.begin();
	while (it != l.end())
	{
		it = l.erase(it);
		++it;
	}
}

TestIterator1():
在这里插入图片描述
TestIterator2():
在这里插入图片描述

2. list的深度剖析及模拟实现

模拟实现list时要先构造一个命名空间,防止调用的时候调用库函数中的内容。

2.1 list_node

模拟实现list,首先需要定义list_node,c++中任何一种结构,都是从空开始,然后用数学方式慢慢搭建而成,所以数学还是很重要的。

	template<class T>
	struct list_node
	{
		list_node<T>* _next;
		list_node<T>* _prev;
		T _data;

		list_node(const T& x = T())
			:_next(nullptr)
			,_prev(nullptr)
			,_data(x)
		{}
	};

2.2 __list_iterator

接下来实现迭代器,list会调用是个迭代器

	//迭代器的封装
	// 1、迭代器要么就是原生指针
	// 2、迭代器要么就是自定义类型对原生指针的封装,模拟指针的行为
	template<class T>
	struct __list_iterator
	{
		typedef list_node<T> node;
		typedef __list_iterator<T> self; //self这个就是迭代器
		node* _node;

		__list_iterator(node* n)
			:_node(n)
		{}
		T& operator*()
		{
			return _node->_data;
		}
		//下面就是完成对self(迭代器)的一些操作,如:it++,it--等
		self& operator++()
		{
			_node = _node->_next;
			return *this;
		}
		self operator++(int) //前置++
		{
			self tmp(*this);
			_node = _node->_next;
			return tmp;
		}
		self& operator--()
		{
			_node = _node->_prev;

			return *this;
		}
		self operator--(int) //前置--
		{
			self tmp(*this);
			_node = _node->_prev;

			return tmp;
		}
		bool operator!=(const self& s)
		{
			return _node != s._node;
		}
		bool operator==(const self& s)
		{
			return _node == s._node;
		}
	};

这个迭代器的实现较简单,但是这只是迭代器中的一部分,后面还有补充

2.3 list

	template<class T>
	class list
	{
		typedef list_node<T> node;
	public:
		typedef __list_iterator<T> iterator;
		iterator begin()
		{
			return iterator(_head->_next);
		}
		iterator begin() const
		{
			return iterator(_head->_next);
		}
		iterator end()
		{
			return iterator(_head);
		}
		iterator end() const
		{
			return iterator(_head);
		}
		void empty_init()
		{
			_head = new node;
			_head->_next = _head;
			_head->_prev = _head;
		}
		list()
		{
			empty_init();
		}
		list(int n, const T& x = T())
		{
			empty_init();//先初始化_head,否则_head为空
			while (n)
			{
				node* new_node = new node(x);
				node* tail = _head->_prev;

				_head->_prev = new_node;
				tail->_next = new_node;
				new_node->_prev = tail;
				new_node->_next = _head;
				--n;
			}
		}
		void swap(list<T>& tmp)
		{
			//在nampspace k这个命名空间中,需要使用的是c库中的swap(就近原则)
			std::swap(_head, tmp._head);
		}
		list(const list<T>& lt)
		{
			empty_init();
			list<T> tmp(lt.begin(), lt.end());
			swap(tmp);
		}
		template<class iterator>
		list(iterator first, iterator last)
		{
			empty_init(); //先初始化_head,否则_head为空
			while (first != last)
			{
				push_back(*first);
				++first;
			}
		}
		// lt1 = lt2
		list<T>& operator=(list<T> lt)
		{
			swap(lt);
			return *this;
		}
		~list()
		{
			clear();
			delete _head;
			_head = nullptr;
		}
		void clear()
		{
			iterator it = begin();
			while (it != end())
			{
				//it = erase(it);
				erase(it++);
			}
		}
		iterator insert(iterator pos,  const T& x)
		{
			node* cur = pos._node;
			node* prev = cur->_prev;
			node* new_node = new node(x);
			
			prev->_next = new_node;
			new_node->_prev = prev;
			new_node->_next = cur;
			cur->_prev = new_node;

			return iterator(new_node);
		}
		iterator erase(iterator pos)
		{
			assert(pos != end());
			node* prev = pos._node->_prev;
			node* next = pos._node->_next;

			prev->_next = next;
			next->_prev = prev;
			delete pos._node;

			return iterator(next);
		}
		void push_back(const T& x = T())
		{
			insert(end(), x);
		}
		void push_front(const T& x = T())
		{
			insert(begin(), x);
		}
		void pop_back()
		{
			erase(--end());
		}

		void pop_front()
		{
			erase(begin());
		}
	private:
		node* _head;
	};

list的构造中,需要注意的就是先初始化_head,否则_head为空,对head的一些操作(如:_head->_prev = new_node)就会导致空指针的使用;list(const list& lt)这个构造的思路挺好,剩下的就是一些基本操作。

2.3 __list_const_iterator

__list_const_iterator与__list_iterator的区别就是是否可以修改链表中的内容,所以对T& operator*() 时,返回const T& operator* 即可。

	template<class T>
	struct __list_const_iterator
	{
		typedef list_node<T> node;
		typedef __list_const_iterator<T> self;
		node* _node;

		__list_const_iterator(node* n)
			:_node(n)
		{}
		const T& operator*()
		{
			return _node->_data;
		}
		.......省略

	};

在这里插入图片描述
在这里插入图片描述

所以当调用iterator时,调用的是T&;当调用const_iterator时,调用的是const T&
在这里插入图片描述
然后再加一个const T*,完整代码如下:

namespace k
{
	template<class T>
	struct list_node
	{
		list_node<T>* _next;
		list_node<T>* _prev;
		T _data;

		list_node(const T& x = T())
			:_next(nullptr)
			,_prev(nullptr)
			,_data(x)
		{}
	};
	//迭代器的封装
	// 1、迭代器要么就是原生指针
	// 2、迭代器要么就是自定义类型对原生指针的封装,模拟指针的行为
	template<class T, class Ref, class Ptr>
	struct __list_iterator
	{
		typedef list_node<T> node;
		typedef __list_iterator<T, Ref, Ptr> self; //self这个就是迭代器
		node* _node;

		__list_iterator(node* n)
			:_node(n)
		{}
		Ref operator*()
		{
			return _node->_data;
		}
		Ptr operator->()
		{
			return &_node->_data;
		}
		//下面就是完成对self(迭代器)的一些操作,如:it++,it--等
		self& operator++()
		{
			_node = _node->_next;
			return *this;
		}
		self operator++(int) //前置++
		{
			self tmp(*this);
			_node = _node->_next;
			return tmp;
		}
		self& operator--()
		{
			_node = _node->_prev;

			return *this;
		}
		self operator--(int) //前置--
		{
			self tmp(*this);
			_node = _node->_prev;

			return tmp;
		}
		bool operator!=(const self& s)
		{
			return _node != s._node;
		}
		bool operator==(const self& s)
		{
			return _node == s._node;
		}
	};
	template<class T>
	class list
	{
		typedef list_node<T> node;
	public:
		typedef __list_iterator<T, T&, T*> iterator;
		typedef __list_iterator<T, const T&, const T*> const_iterator;

		iterator begin()
		{
			return iterator(_head->_next);
		}
		const_iterator begin() const
		{
			return const_iterator(_head->_next);
		}
		iterator end()
		{
			return iterator(_head);
		}
		const_iterator end() const
		{
			return const_iterator(_head);
		}
		void empty_init()
		{
			_head = new node;
			_head->_next = _head;
			_head->_prev = _head;
		}
		list()
		{
			empty_init();
		}
		list(int n, const T& x = T())
		{
			empty_init();//先初始化_head,否则_head为空
			while (n)
			{
				node* new_node = new node(x);
				node* tail = _head->_prev;

				_head->_prev = new_node;
				tail->_next = new_node;
				new_node->_prev = tail;
				new_node->_next = _head;
				--n;
			}
		}
		void swap(list<T>& tmp)
		{
			//在nampspace k这个命名空间中,需要使用的是c库中的swap(就近原则)
			std::swap(_head, tmp._head);
		}
		list(const list<T>& lt)
		{
			empty_init();
			list<T> tmp(lt.begin(), lt.end());
			swap(tmp);
		}
		template<class iterator>
		list(iterator first, iterator last)
		{
			empty_init(); //先初始化_head,否则_head为空
			while (first != last)
			{
				push_back(*first);
				++first;
			}
		}
		// lt1 = lt2
		list<T>& operator=(list<T> lt)
		{
			swap(lt);
			return *this;
		}
		~list()
		{
			clear();
			delete _head;
			_head = nullptr;
		}
		void clear()
		{
			iterator it = begin();
			while (it != end())
			{
				//it = erase(it);
				erase(it++);
			}
		}
		iterator insert(iterator pos,  const T& x)
		{
			node* cur = pos._node;
			node* prev = cur->_prev;
			node* new_node = new node(x);
			
			prev->_next = new_node;
			new_node->_prev = prev;
			new_node->_next = cur;
			cur->_prev = new_node;

			return iterator(new_node);
		}
		iterator erase(iterator pos)
		{
			assert(pos != end());
			node* prev = pos._node->_prev;
			node* next = pos._node->_next;

			prev->_next = next;
			next->_prev = prev;
			delete pos._node;

			return iterator(next);
		}
		void push_back(const T& x = T())
		{
			insert(end(), x);
		}
		void push_front(const T& x = T())
		{
			insert(begin(), x);
		}
		void pop_back()
		{
			erase(--end());
		}

		void pop_front()
		{
			erase(begin());
		}
	private:
		node* _head;
	};
	void test1()
	{
		list<int> lt(5, 5);
		list<int>::iterator  it = lt.begin();
		while (it != lt.end())
		{
			//(*it)++;
			cout << *it << " ";
			++it;
		}
		cout << endl;
	}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/578070.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

chatgpt赋能python:Python中的数字转换

Python中的数字转换 在Python中&#xff0c;数字转换是一项非常基础但是非常重要的任务。无论您是在进行数据分析、机器学习还是编写Web应用程序&#xff0c;数字转换都是必不可少的。在这篇文章中&#xff0c;我们将介绍Python中的数字转换并提供一些实用的示例。 将字符串转…

Unity之SpriteShapeController

Detail&#xff1a;精灵形状的质量 高中低三种质量 Is Open Ended&#xff1a;是否是开放的&#xff0c;不封闭的 Adaptive UV&#xff1a;自适应UV&#xff0c;如果开启&#xff0c;会自动帮助我们判断是平铺还是拉伸 开启后只有宽度够才会平铺&#xff0c;如果宽度不够会拉…

micropython固件编译——把自己的py库添加进固件

目录 0. 前言1. 编写自己库的代码2. 移植库3. 验证 0. 前言 本节编译自己写的py库&#xff0c;增强移植性&#xff0c;往后烧录自己的固件即可轻易移植代码 没装好环境或者没有基础可以先看看这个&#xff1a; Ubuntu下ESP-IDF的环境搭建 Ubuntu下编译esp32micropython固件编…

antV 事件多次触发问题,解绑

由于最近刚刚接触 antV - 数据可视化,对于他的事件应用还比较陌生,在应用中莫名其妙多次调用,想了很多方式如节流……,但是没有用。 业务介绍 当我点击流程图中的某一项进行提示,每次双击都会递增调用。 解决过程 当时想着用节流的方式,但是很遗憾,他还是疯狂递增调用…

Go语言的命令

常用命令 假如你已安装了golang环境&#xff0c;你可以在命令行执行go命令查看相关的Go语言命令&#xff1a; Go语言是一门编译型语言&#xff0c;通过命令行工具来编译、运行和管理代码。以下是Go语言的一些常用命令及其用法&#xff1a; go run&#xff1a;用于编译并直接…

chatgpt赋能python:Python补全:介绍和优点

Python补全&#xff1a;介绍和优点 Python是一种高级编程语言&#xff0c;自20世纪90年代以来一直广受欢迎。Python被认为是一种非常易学易用的语言&#xff0c;因为它的代码看起来就像是英文一样流畅自然。它是一种解释性语言&#xff0c;这意味着代码可以直接在计算机上运行…

LeetCode 24. 两两交换链表中的节点

C代码&#xff1a; class Solution { public:ListNode* swapPairs(ListNode* head) {ListNode* dummyHead new ListNode(0);//设置一个虚拟头结点dummyHead->next head;// 将虚拟头结点指向head&#xff0c;这样方面后面做删除操作ListNode* cur dummyHead;//初始时&…

Android SharedPreferences转为MMKV

开篇 开局一张图&#xff0c;说明一切问题。 MMKV优势 可以看出MMKV相比SP的优势还是比较大的&#xff0c;除了需要引入库&#xff0c;有一些修改上的成本以外&#xff0c;就没有什么能够阻挡MMKV了。当然了&#xff0c;MMKV也有着不广为人知的缺点&#xff0c;放在最后。 MM…

【STM32F103ZE实验】【实验1】点亮LED

STM32CubeMx生成keil工程 步骤1&#xff1a;打开STM32CubeMx&#xff0c; 选择MCU类型 步骤2&#xff1a; 设置Debug类型 步骤3&#xff1a; 选择时钟源 步骤4&#xff1a; 配置时钟 步骤5&#xff1a; 配置GPIO控制LED 首先配置PE5 点击GPIO_Output进行相关配置&#…

如何使用Node.js REPL

目录 1、Nodejs REPL 2、_特殊变量 3、向上箭头键 4、点命令 5、从JavaScript文件运行REPL 1、Nodejs REPL REPL代表Read-Evaluate-Print-Loop&#xff0c;是交互式解释器。 node命令是我们用来运行Node.js脚本的命令&#xff1a; node script.js 如果我们运行node命令…

chatgpt赋能python:Python数据处理中如何选取指定范围的数据

Python数据处理中如何选取指定范围的数据 Python已经成为了数据科学家和工程师的标配&#xff0c;尤其在数据处理和数据分析中&#xff0c;Python具有广泛的应用。在数据处理中&#xff0c;选取指定范围的数据是一个很重要的功能。本文将介绍Python中如何实现指定范围的数据选…

SpringBoot——原理(起步依赖+自动配置(概述和案例))

在Spring家族中提供了很多优秀的框架&#xff0c;所有的框架都是基于同一个基础框架——Spring Framework. 使用spring框架开发麻烦的一批&#xff0c;光是搞依赖和配置就够人喝一壶了。因此在spring4.0版本之后又推出了springboot框架。springboot框架用起来比spring框架简单…

chatgpt赋能python:Python行长度的重要性及最佳实践

Python 行长度的重要性及最佳实践 Python 行长度的重要性 对于一门编程语言而言&#xff0c;行长度是指每一行代码的字符数&#xff0c;Python 也不例外。同时&#xff0c;Python 的行长度限制也是相当明确的&#xff0c;官方建议不要超过 79 个字符&#xff0c;而 PEP 8 规范…

【编译、链接、装载一】预处理、编译、汇编、链接

【编译和链接一】预处理、编译、汇编、链接 一、被隐藏了的过程二、预处理器&#xff08;Prepressing&#xff09;——cpp1、预处理指令2、预处理过程3、预处理生成的hello.i文件 三、编译器&#xff08;Compilation&#xff09;——cc1、编译指令2、编译的过程3、编译生成的文…

chatgpt赋能python:Python读取Mat文件的完整教程

Python 读取Mat文件的完整教程 在数据科学领域&#xff0c;Matlab&#xff08;或简称Mat&#xff09;是最受欢迎的编程语言之一。Matlab可用于数学计算、数据预处理、建模和数据分析。然而&#xff0c;Matlab的开销和许可证成本会限制公司和个人的使用。因此&#xff0c;Pytho…

渗透必学神器:BurpSuite教程(一)

0x00 前言 Burp Suite (简称BP&#xff0c;下同)是用于攻击web 应用程序的集成平台。它包含了许多工具&#xff0c;并为这些工具设计了许多接口&#xff0c;以促进加快攻击应用程序的过程。 从本节开始将为大家陆续带来BP各个模块的使用说明 0x01 中间人攻击 中间人攻击&am…

ChatGPT | Bing | Google Bard | 讯飞星火 | 到底哪家强?实测

最近AIGC战场依然热闹&#xff0c;微软的new bing、Google的Bard、国内的讯飞星火认知大模型&#xff0c;都接连上阵&#xff0c;我们对比ChatGPT一起来看看&#xff0c;我把实际使用测试结果发出&#xff0c;供大家参考。有些测试结果可能会出乎大家的预料哦… 今天我们暂时主…

第十四章 (Set)

一、Set 接口&#xff08;P518&#xff09; 1. Set 接口基本介绍 &#xff08;1&#xff09;无序&#xff08;添加和取出的顺序不一致&#xff09;&#xff0c;没有索引。 &#xff08;2&#xff09;不允许重复元素&#xff0c;所以最多包含一个 null。 2. Set 接口的常用方法…

阿里云服务器ECS云盘扩容

前言 对于云服务器&#xff0c;相信大多数开发的铁子们都玩过&#xff0c;但是云盘爆满的情况&#xff0c;对于新手或者没有自己运营业务的铁子们&#xff0c;平台给的初始容量也不算小&#xff0c;所以这种情况碰到的概率还是比较小。由于我的服务器应用的复杂度随着业务的发…

ubuntu安装搜狗输入法,图文详解+踩坑解决

搜狗输入法已支持Ubuntu16.04、18.04、19.10、20.04、20.10&#xff0c;本教程系统是基于ubuntu18.04 一、添加中文语言支持 系统设置—>区域和语言—>管理已安装的语言—>在“语言”tab下—>点击“添加或删除语言”。 弹出“已安装语言”窗口&#xff0c;勾选中文…