Python 2026年5月13日
class Queue:
def __init__(self):
self.queue = []
def enqueue(self, item):
self.queue.append(item)
def dequeue(...
Python 2026年5月13日
class Stack:
def __init__(self):
self.stack = []
def push(self, item):
self.stack.append(item)
def pop(self):
...
Python 2026年4月27日
import time
for i in range(101):
bar = '[' + '=' * (i // 2) + ' ' * (50 - i // 2) + ...
KWS 2026年4月21日
我展示的是一级标题
==================
我展示的是二级标题
------------------
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题
[...
桐花
设计模式 2026年3月16日
#include <iostream>
#include <cstring>
using namespace std;
struct State
{
wchar_t wcsState[260];
};
cla...
数据库 2025年1月8日
1. Incorrect arguments to st_distance_sphere
st_distance_sphere 函数参数必须经度在前,纬度在后,经度有效值在 (-180, 180) 区间内,纬度有效值在 (-90, 90)...
设计模式 2024年12月31日
#include <iostream>
using namespace std;
#define SAFE_DELETE(p) if(p) {delete p; p=NULL;}
class Mediator;
clas...
设计模式 2024年2月27日
#include <iostream>
using namespace std;
typedef struct tagNode
{
int value;
tagNode *pNext;
}Node;
class JTL...
LIJG
余本顽劣,生于紫云下,长于汝水滨。早年求学,兴趣广泛,好高骛远,学无所成,仓皇入世。兴趣所致,投身互联网,求知未证,而立已至,始悟光阴荏苒,终需务实钻研。故有此站,记录时光,积累点滴,验证所学,分享愚见。指舞方寸间,心系万千年。
留言